From acd76288ded556d928efbc2a0543224e5c1c04a4 Mon Sep 17 00:00:00 2001 From: Pascal Vizeli Date: Mon, 11 Jun 2018 08:36:18 +0000 Subject: [PATCH] Fix speel Signed-off-by: Pascal Vizeli --- buildroot-external/board/raspberrypi/post-image.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/buildroot-external/board/raspberrypi/post-image.sh b/buildroot-external/board/raspberrypi/post-image.sh index 8421ad7f8..a70d8f984 100755 --- a/buildroot-external/board/raspberrypi/post-image.sh +++ b/buildroot-external/board/raspberrypi/post-image.sh @@ -16,7 +16,7 @@ IMAGE_FILE=${BINARIES_DIR}/${HASSOS_ID}_${BOARD_ID}-${VERSION_MAJOR}.${VERSION_B if [ "$BOARD_ID" == "rpi3-64" ]; then KERNEL_NAME="Image" else - KENREL_NAME="zImage" + KERNEL_NAME="zImage" fi # Init boot data @@ -46,7 +46,7 @@ echo "dwc_otg.lpm_enable=0 console=tty1" > ${BOOT_DATA}/cmdline.txt create_boot_image ${BINARIES_DIR} create_overlay_image ${BINARIES_DIR} create_uboot_state_image ${BINARIES_DIR} -create_kernel_image ${BINARIES_DIR} ${KENREL_NAME} +create_kernel_image ${BINARIES_DIR} ${KERNEL_NAME} create_disk_image ${BINARIES_DIR} ${IMAGE_FILE} 2 fix_disk_image_mbr ${IMAGE_FILE}