summaryrefslogtreecommitdiffstats
path: root/board/boundarydevices
diff options
context:
space:
mode:
authorArnout Vandecappelle <arnout@mind.be>2017-07-05 13:14:26 +0200
committerThomas Petazzoni <thomas.petazzoni@free-electrons.com>2017-07-05 15:23:13 +0200
commit31be2ec220c8ad6e1f98d9fb705034cc288de597 (patch)
tree4294b956d2fd1c5fbb13c9bfea52bc5d1fc74ed7 /board/boundarydevices
parentb2ea6eaf23202c92063931bba6fe8f5506e90d52 (diff)
downloadbuildroot-31be2ec220c8ad6e1f98d9fb705034cc288de597.tar.gz
buildroot-31be2ec220c8ad6e1f98d9fb705034cc288de597.zip
boards: replace $HOST_DIR/usr/ with $HOST_DIR/ in scripts
Since things are no longer installed in $(HOST_DIR)/usr, the callers should also not refer to it. This is a mechanical change with git grep -l 'HOST_DIR}\?/usr/' board | xargs sed -i 's%\(HOST_DIR}\?\)/usr/%\1/%g' Signed-off-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Diffstat (limited to 'board/boundarydevices')
-rwxr-xr-xboard/boundarydevices/common/post-build.sh4
1 files changed, 2 insertions, 2 deletions
diff --git a/board/boundarydevices/common/post-build.sh b/board/boundarydevices/common/post-build.sh
index f68fa0e61b..8f1d44496f 100755
--- a/board/boundarydevices/common/post-build.sh
+++ b/board/boundarydevices/common/post-build.sh
@@ -8,13 +8,13 @@
BOARD_DIR="$(dirname $0)"
# bd u-boot looks for bootscript here
-$HOST_DIR/usr/bin/mkimage -A arm -O linux -T script -C none -a 0 -e 0 \
+$HOST_DIR/bin/mkimage -A arm -O linux -T script -C none -a 0 -e 0 \
-n "boot script" -d $BOARD_DIR/6x_bootscript.txt $TARGET_DIR/6x_bootscript
# u-boot / update script for bd upgradeu command
if [ -e $BINARIES_DIR/u-boot.imx ];
then
install -D -m 0644 $BINARIES_DIR/u-boot.imx $TARGET_DIR/u-boot.imx
- $HOST_DIR/usr/bin/mkimage -A arm -O linux -T script -C none -a 0 -e 0 \
+ $HOST_DIR/bin/mkimage -A arm -O linux -T script -C none -a 0 -e 0 \
-n "upgrade script" -d $BOARD_DIR/6x_upgrade.txt $TARGET_DIR/6x_upgrade
fi
OpenPOWER on IntegriCloud