summaryrefslogtreecommitdiff
path: root/board/boundarydevices/nitrogen6x/post-build.sh
diff options
context:
space:
mode:
authorPeter Korsgaard <jacmet@sunsite.dk>2013-09-26 21:15:59 +0200
committerPeter Korsgaard <jacmet@sunsite.dk>2013-09-26 21:15:59 +0200
commitb720a014bba13818c33810a9673b36d2114055a2 (patch)
treed1c315ba19f9eb566b97b08afa6293c3753ea6b3 /board/boundarydevices/nitrogen6x/post-build.sh
parent844c52ecd4df1d49a0b8eda54f3e204ee0e9f158 (diff)
nitrogen6x: post-build.sh: use the exported variables for {TARGET,BINARIES}_DIR
No functional change, but lets show the preferred way to do this. Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
Diffstat (limited to 'board/boundarydevices/nitrogen6x/post-build.sh')
-rwxr-xr-xboard/boundarydevices/nitrogen6x/post-build.sh6
1 files changed, 2 insertions, 4 deletions
diff --git a/board/boundarydevices/nitrogen6x/post-build.sh b/board/boundarydevices/nitrogen6x/post-build.sh
index 1dc5643a5..cc6e66acf 100755
--- a/board/boundarydevices/nitrogen6x/post-build.sh
+++ b/board/boundarydevices/nitrogen6x/post-build.sh
@@ -5,16 +5,14 @@
# http://boundarydevices.com/u-boot-on-i-mx6/
#
-TARGET_DIR=$1
-IMAGES_DIR=$1/../images
BOARD_DIR="$(dirname $0)"
# bd u-boot looks for bootscript here
cp $BOARD_DIR/6x_bootscript $TARGET_DIR
# u-boot / update script for bd upgradeu command
-if [ -e $IMAGES_DIR/u-boot.imx ];
+if [ -e $BINARIES_DIR/u-boot.imx ];
then
- cp $IMAGES_DIR/u-boot.imx $TARGET_DIR
+ cp $BINARIES_DIR/u-boot.imx $TARGET_DIR
cp $BOARD_DIR/6x_upgrade $TARGET_DIR
fi