31be2ec220
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>
21 lines
630 B
Bash
Executable File
21 lines
630 B
Bash
Executable File
#!/bin/sh
|
|
# post-build fixups
|
|
# for further details, see
|
|
#
|
|
# http://boundarydevices.com/u-boot-on-i-mx6/
|
|
#
|
|
|
|
BOARD_DIR="$(dirname $0)"
|
|
|
|
# bd u-boot looks for bootscript here
|
|
$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/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
|