6d3b77e970
The files in board/olimex/a20_olinuxino_lime/ work with minimal or no modifications for the Olimex A20-OLinuXino-Micro board, whose support is going to be added in a later commit. Rename the directory to clarify it's not restricted to the Lime anymore. Signed-off-by: Luca Ceresoli <luca@lucaceresoli.net> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
13 lines
298 B
Bash
Executable File
13 lines
298 B
Bash
Executable File
#!/bin/sh
|
|
# args from BR2_ROOTFS_POST_SCRIPT_ARGS
|
|
# $2 path of boot.cmd
|
|
# $3 output directory for boot.scr
|
|
|
|
MKIMAGE=$HOST_DIR/usr/bin/mkimage
|
|
|
|
$MKIMAGE -A arm -O linux -T script -C none -d $2 $3/boot.scr
|
|
|
|
if [ -e $BINARIES_DIR/script.bin ]; then
|
|
cp $BINARIES_DIR/script.bin $3/script.bin
|
|
fi
|