[Buildroot] [PATCH v2 1/3] board/boundarydevices/common/post-image.sh: use genimage.sh

Gary Bisson gary.bisson at boundarydevices.com
Fri Mar 27 17:12:01 UTC 2020


- To avoid code duplication and to benefit from support script
improvements like empty target dir.
- Note that currently genimage.sh can't be set in defconfig directly for
i.MX8 targets as the POST_SCRIPT_ARGS is used by
imx8-bootloader-prepare.sh

Signed-off-by: Gary Bisson <gary.bisson at boundarydevices.com>
---
 board/boundarydevices/common/post-image.sh | 13 +------------
 1 file changed, 1 insertion(+), 12 deletions(-)

diff --git a/board/boundarydevices/common/post-image.sh b/board/boundarydevices/common/post-image.sh
index 9cca1b1789..5c70d98e54 100755
--- a/board/boundarydevices/common/post-image.sh
+++ b/board/boundarydevices/common/post-image.sh
@@ -1,16 +1,5 @@
 #!/bin/sh
 
-BOARD_DIR="$(dirname $0)"
-GENIMAGE_CFG="${BOARD_DIR}/genimage.cfg"
-GENIMAGE_TMP="${BUILD_DIR}/genimage.tmp"
-
-rm -rf "${GENIMAGE_TMP}"
-
-genimage                           \
-	--rootpath "${TARGET_DIR}"     \
-	--tmppath "${GENIMAGE_TMP}"    \
-	--inputpath "${BINARIES_DIR}"  \
-	--outputpath "${BINARIES_DIR}" \
-	--config "${GENIMAGE_CFG}"
+support/scripts/genimage.sh -c $(dirname $0)/genimage.cfg
 
 exit $?
-- 
2.25.1




More information about the buildroot mailing list