From b8591dd3e15e4c55ab189cbc1e968a76c4a52424 Mon Sep 17 00:00:00 2001 From: Hanspeter Portner Date: Fri, 17 Sep 2021 15:28:35 +0200 Subject: [PATCH] board/freescale: add support for Image.gz to post-image For the i.MX8 often an Image.gz is built. With these changes, if BR2_LINUX_KERNEL_IMAGEGZ=y, the correct Image.gz file is now put into the generated image instead of falling back to the non-existent zImage. Signed-off-by: Hanspeter Portner Signed-off-by: Yann E. MORIN --- board/freescale/common/imx/post-image.sh | 2 ++ 1 file changed, 2 insertions(+) diff --git a/board/freescale/common/imx/post-image.sh b/board/freescale/common/imx/post-image.sh index 3bb482debd..d36f82917e 100755 --- a/board/freescale/common/imx/post-image.sh +++ b/board/freescale/common/imx/post-image.sh @@ -25,6 +25,8 @@ linux_image() echo "\"uImage\"" elif grep -Eq "^BR2_LINUX_KERNEL_IMAGE=y$" ${BR2_CONFIG}; then echo "\"Image\"" + elif grep -Eq "^BR2_LINUX_KERNEL_IMAGEGZ=y$" ${BR2_CONFIG}; then + echo "\"Image.gz\"" else echo "\"zImage\"" fi -- 2.30.2