f14e95b3ff
There is no reason to create boot.scr at board/wandboard and later install it at TARGET_DIR/boot, leaving a stale file behind. Signed-off-by: Carlos Santos <unixmania@gmail.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
9 lines
204 B
Bash
Executable File
9 lines
204 B
Bash
Executable File
#!/bin/sh
|
|
|
|
BOARD_DIR="$(dirname $0)"
|
|
|
|
install -d -m 755 $TARGET_DIR/boot
|
|
|
|
$HOST_DIR/bin/mkimage -A arm -O linux -T script -C none \
|
|
-n "boot script" -d $BOARD_DIR/boot.scr.txt $TARGET_DIR/boot/boot.scr
|