From: Fabio Estevam Date: Fri, 13 May 2016 20:33:25 +0000 (-0300) Subject: post-image: Do not hardcode the genimage.cfg path X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=35a24c6f0f2592cd94b1ac293ce62d9a22f2a8b5;p=buildroot.git post-image: Do not hardcode the genimage.cfg path Instead of hardcoding the genimage.cfg path, let's add a BOARD_DIR variable to improve readability. Signed-off-by: Fabio Estevam Signed-off-by: Thomas Petazzoni --- diff --git a/board/freescale/imx6ulevk/post-image.sh b/board/freescale/imx6ulevk/post-image.sh index cb75a47de6..87573557ca 100755 --- a/board/freescale/imx6ulevk/post-image.sh +++ b/board/freescale/imx6ulevk/post-image.sh @@ -1,6 +1,7 @@ #!/usr/bin/env bash -GENIMAGE_CFG="board/freescale/imx6ulevk/genimage.cfg" +BOARD_DIR="$(dirname $0)" +GENIMAGE_CFG="${BOARD_DIR}/genimage.cfg" GENIMAGE_TMP="${BUILD_DIR}/genimage.tmp" rm -rf "${GENIMAGE_TMP}" diff --git a/board/via/imx6_vab820/post-image.sh b/board/via/imx6_vab820/post-image.sh index 8d502a550e..00de33b01d 100755 --- a/board/via/imx6_vab820/post-image.sh +++ b/board/via/imx6_vab820/post-image.sh @@ -1,6 +1,7 @@ #!/bin/bash -GENIMAGE_CFG="board/via/imx6_vab820/genimage.cfg" +BOARD_DIR="$(dirname $0)" +GENIMAGE_CFG="${BOARD_DIR}/genimage.cfg" GENIMAGE_TMP="${BUILD_DIR}/genimage.tmp" rm -rf "${GENIMAGE_TMP}" diff --git a/board/wandboard/post-image.sh b/board/wandboard/post-image.sh index 95cbfa4897..11f58dbd02 100755 --- a/board/wandboard/post-image.sh +++ b/board/wandboard/post-image.sh @@ -1,6 +1,7 @@ #!/usr/bin/env bash -GENIMAGE_CFG="board/wandboard/genimage.cfg" +BOARD_DIR="$(dirname $0)" +GENIMAGE_CFG="${BOARD_DIR}/genimage.cfg" GENIMAGE_TMP="${BUILD_DIR}/genimage.tmp" rm -rf "${GENIMAGE_TMP}"