diskimage-builder/elements/deploy-kexec/init.d/zdeploy-kexec
Ghe Rivero 6d1f03bda3 Add deploy-kexec element
Boots into the new image kernel once baremetal-deploy-helper signals
it is finished using kexec utilities.

Change-Id: I705787cc394ef14200d80404ee497762ab79b452
2013-09-17 14:01:20 -07:00

11 lines
459 B
Plaintext

TFTP_MAC_ADDRESS="01-"`echo $BOOT_MAC_ADDRESS | sed 's/:/-/g' | tr "A-Z" "a-z"`
tftp -r /tftpboot/pxelinux.cfg/${TFTP_MAC_ADDRESS} -g ${BOOT_SERVER}
APPEND=$(tail -n1 ${TFTP_MAC_ADDRESS} | cut -f3- -d" ")
KERNEL=$(get_kernel_parameter BOOT_IMAGE | sed 's/deploy_//g')
RAMDISK=$(echo $KERNEL | sed 's/kernel/ramdisk/')
tftp -r ${KERNEL} -g ${BOOT_SERVER}
tftp -r ${RAMDISK} -g ${BOOT_SERVER}
kexec -l kernel --append="${APPEND}" --initrd=ramdisk && kexec -e