mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-08 22:45:43 +00:00
45 lines
981 B
Bash
Executable file
45 lines
981 B
Bash
Executable file
#!/bin/bash
|
|
|
|
[ -f /etc/conf.d/kexec ] && . /etc/conf.d/kexec
|
|
|
|
. /etc/rc.conf
|
|
. /etc/rc.d/functions
|
|
|
|
case "$1" in
|
|
start)
|
|
stat_busy "Enabled loading kernel for Kexec into running kernel on reboot"
|
|
add_daemon kexec
|
|
stat_done
|
|
;;
|
|
|
|
stop|load)
|
|
if [ "$RUNLEVEL" = "6" -o "$1" = "load" ]; then
|
|
stat_busy "Loading kernel for Kexec into running kernel"
|
|
[ -f "$KPATH" ] || stat_fail
|
|
[ -f "$INITRD" ] && _INITRD="--initrd=$INITRD"
|
|
/sbin/kexec -l $KPATH --append="root=$ROOTPART $KPARAM" $_INITRD > /dev/null 2>&1
|
|
else
|
|
stat_busy "Skipping loading kernel for Kexec into running kernel"
|
|
fi
|
|
if [ $? -eq 0 ] ; then
|
|
rm_daemon kexec
|
|
stat_done
|
|
else
|
|
stat_fail
|
|
fi
|
|
;;
|
|
|
|
unload)
|
|
stat_busy "Unloading Kexec kernel from running kernel"
|
|
/sbin/kexec -u
|
|
if [ $? -eq 0 ] ; then
|
|
stat_done
|
|
else
|
|
stat_fail
|
|
fi
|
|
;;
|
|
|
|
*)
|
|
echo "usage: $0 {start|stop|load|unload}"
|
|
esac
|
|
exit 0
|