diff mbox series

board/freescale: Fix wrong config for u-boot.img

Message ID 20190710051702.9481-1-offougajoris@gmail.com
State Accepted
Headers show
Series board/freescale: Fix wrong config for u-boot.img | expand

Commit Message

Joris OFFOUGA July 10, 2019, 5:17 a.m. UTC
Signed-off-by: Joris Offouga <offougajoris@gmail.com>
---
 board/freescale/common/imx/post-image.sh | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Comments

Arnout Vandecappelle July 10, 2019, 8:23 p.m. UTC | #1
On 10/07/2019 07:17, Joris Offouga wrote:
> Signed-off-by: Joris Offouga <offougajoris@gmail.com>
> ---
>  board/freescale/common/imx/post-image.sh | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
> 
> 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

 Gah, I had made exactly this fix before applying to master, I had even updated
the commit message, but somehow the fix got lost...

 Thanks for handling it!

 Applied to master, thanks.

 Regards,
 Arnout


>  	    echo "u-boot.img"
>  	fi
>  }
>
diff mbox series

Patch

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
 }