6d1f03bda3
Boots into the new image kernel once baremetal-deploy-helper signals it is finished using kexec utilities. Change-Id: I705787cc394ef14200d80404ee497762ab79b452
11 lines
459 B
Plaintext
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
|