Kexec/kexec-load

From Alpine Linux
Revision as of 18:56, 2 January 2024 by Zcrayfish (talk | contribs) (Testing the potential to move the kexec-load script from the Kexec page and then transcluding it.)
#!/sbin/openrc-run description="kexec for faster reboot" # Define defaults : "${BOOTPART:=/boot}" : "${KERNEL:=vmlinuz-edge}" : "${INITRD:=initramfs-edge}" depend() { need localmount } start() { : } stop() { if ! yesno ${RC_GOINGDOWN}; then einfo "kexec-load: Not rebooting or powering off; not loading kernel" exit fi ebegin "kexec-load: loading kernel for faster reboot" kexec -l "${BOOTPART}/${KERNEL}" \ --initrd "${BOOTPART}/${INITRD}" \ --reuse-cmdline ewend $? Failed. }