From 1d15803ff2ec75d3b67a9324cf3c4ff68dddcdb3 Mon Sep 17 00:00:00 2001 From: Gabriel Valcazar Date: Wed, 31 Jan 2024 11:38:27 +0100 Subject: [PATCH] ccimx93: installer: add helper msg to set image-name Up until recently, we were only generating dey-image-qt images for the ccimx93-dvk. Now that we are generating dey-image-lvgl images as well, make sure to print the helper message to set image-name when installing said images. Signed-off-by: Gabriel Valcazar --- .../u-boot/u-boot-dey/ccimx93/install_linux_fw_sd.txt | 2 ++ .../u-boot/u-boot-dey/ccimx93/install_linux_fw_usb.txt | 2 ++ 2 files changed, 4 insertions(+) diff --git a/meta-digi-arm/recipes-bsp/u-boot/u-boot-dey/ccimx93/install_linux_fw_sd.txt b/meta-digi-arm/recipes-bsp/u-boot/u-boot-dey/ccimx93/install_linux_fw_sd.txt index 33c853c4f..153f27aa3 100644 --- a/meta-digi-arm/recipes-bsp/u-boot/u-boot-dey/ccimx93/install_linux_fw_sd.txt +++ b/meta-digi-arm/recipes-bsp/u-boot/u-boot-dey/ccimx93/install_linux_fw_sd.txt @@ -57,6 +57,8 @@ if test ! -e mmc ${INSTALL_MMCDEV} ${INSTALL_ROOTFS_FILENAME}; then fi fi if test "${install_abort}" = "1"; then + echo "To install a different image, set variable 'image-name', e.g.:" + echo " => setenv image-name core-image-base" echo "Aborted."; exit; fi diff --git a/meta-digi-arm/recipes-bsp/u-boot/u-boot-dey/ccimx93/install_linux_fw_usb.txt b/meta-digi-arm/recipes-bsp/u-boot/u-boot-dey/ccimx93/install_linux_fw_usb.txt index fc2e67264..5e536006b 100644 --- a/meta-digi-arm/recipes-bsp/u-boot/u-boot-dey/ccimx93/install_linux_fw_usb.txt +++ b/meta-digi-arm/recipes-bsp/u-boot/u-boot-dey/ccimx93/install_linux_fw_usb.txt @@ -57,6 +57,8 @@ if test ! -e usb ${INSTALL_USBDEV} ${INSTALL_ROOTFS_FILENAME}; then fi fi if test "${install_abort}" = "1"; then + echo "To install a different image, set variable 'image-name', e.g.:" + echo " => setenv image-name core-image-base" echo "Aborted."; exit; fi