From: Joris Offouga Date: Wed, 10 Jul 2019 05:17:02 +0000 (+0200) Subject: board/freescale: Fix wrong config for u-boot.img X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=f97d69b2ac831988a7bb3f132cc0beebbbd12b73;p=buildroot.git board/freescale: Fix wrong config for u-boot.img Signed-off-by: Joris Offouga Signed-off-by: Arnout Vandecappelle (Essensium/Mind) --- diff --git a/board/freescale/common/imx/post-image.sh b/board/freescale/common/imx/post-image.sh index ab51dc2098..19d8fffb63 100755 --- a/board/freescale/common/imx/post-image.sh +++ b/board/freescale/common/imx/post-image.sh @@ -68,7 +68,7 @@ uboot_image() echo "u-boot.imx" elif grep -Eq "^BR2_TARGET_UBOOT_FORMAT_DTB_IMG=y$" ${BR2_CONFIG}; then echo "u-boot-dtb.img" - elif grep -Eq "^BR2_TARGET_UBOOT_FORMAT_DTB_IMG=y$" ${BR2_CONFIG}; then + elif grep -Eq "^BR2_TARGET_UBOOT_FORMAT_IMG=y$" ${BR2_CONFIG}; then echo "u-boot.img" fi }