Index: kexec-tools/trunk/kexec =================================================================== --- kexec-tools/trunk/kexec (revision 124245) +++ kexec-tools/trunk/kexec (working copy) @@ -7,19 +7,19 @@ case "$1" in start) - stat_busy "Enabled loading kernel for Kexec into running kernel on reboot" + stat_busy "Enabling Kexec" add_daemon kexec stat_done ;; stop|load) if [ "$RUNLEVEL" = "6" -o "$1" = "load" ]; then - stat_busy "Loading kernel for Kexec into running kernel" + stat_busy "Loading Kexec 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" + stat_busy "Disabling Kexec" fi if [ $? -eq 0 ] ; then rm_daemon kexec @@ -30,7 +30,7 @@ ;; unload) - stat_busy "Unloading Kexec kernel from running kernel" + stat_busy "Unloading Kexec kernel" /sbin/kexec -u if [ $? -eq 0 ] ; then stat_done