summaryrefslogtreecommitdiff
path: root/packages/initrdscripts/files/87-kexecboot.sh
blob: 2a51b4d9c89d556a6e58db9e0c9cdf4ffdf671b9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#!/bin/sh
# Allow kexecing to kernel in rootfs

if [ -n "$BOOT_ROOT" -a -f "$BOOT_ROOT/boot/zImage" ]; then
    if ! expr "$CMDLINE" : '.*nokexec'; then
	echo "Kernel found in rootfs:" >$CONSOLE
	ls -l "$BOOT_ROOT/boot/zImage" >$CONSOLE
	initramfs=""
	if [ -f "$BOOT_ROOT/boot/initramfs.bin" ]; then
	    echo "Initramfs found in rootfs:"
	    ls -l "$BOOT_ROOT/boot/initramfs.bin"
    	    initramfs="--initrd=$BOOT_ROOT/boot/initramfs.bin"
        fi
	echo /usr/sbin/kexec -f "$BOOT_ROOT/boot/zImage" $initramfs --command-line="$CMDLINE nokexec" >$CONSOLE
        sleep 10
	/usr/sbin/kexec -f "$BOOT_ROOT/boot/zImage" $initramfs --command-line="$CMDLINE nokexec"
        sleep 10000
    fi
fi