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>
9 lines
227 B
Bash
Executable File
9 lines
227 B
Bash
Executable File
#!/bin/sh
|
|
|
|
BOARD_DIR="$(dirname $0)"
|
|
|
|
$HOST_DIR/bin/mkimage -A arm -O linux -T script -C none \
|
|
-n "boot script" -d $BOARD_DIR/boot.scr.txt $BOARD_DIR/boot.scr
|
|
|
|
install -m 0644 -D $BOARD_DIR/boot.scr $TARGET_DIR/boot/boot.scr
|