Browse Source

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>
Joris Offouga 4 years ago
parent
commit
f97d69b2ac
1 changed files with 1 additions and 1 deletions
  1. 1 1
      board/freescale/common/imx/post-image.sh

+ 1 - 1
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
 }