diff options
author | 2019-07-10 07:17:02 +0200 | |
---|---|---|
committer | 2019-07-10 22:18:46 +0200 | |
commit | f97d69b2ac831988a7bb3f132cc0beebbbd12b73 (patch) | |
tree | 69adc94121a35c48ce414e42c95e01e9a932fe8c /board/freescale | |
parent | 21a44009875fc50bd6bdde65ec71930c657875fa (diff) | |
download | buildroot-f97d69b2ac831988a7bb3f132cc0beebbbd12b73.tar.gz buildroot-f97d69b2ac831988a7bb3f132cc0beebbbd12b73.tar.bz2 |
board/freescale: Fix wrong config for u-boot.img
Signed-off-by: Joris Offouga <offougajoris@gmail.com>
Signed-off-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be>
Diffstat (limited to 'board/freescale')
-rwxr-xr-x | board/freescale/common/imx/post-image.sh | 2 |
1 files changed, 1 insertions, 1 deletions
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 } |