kumquat-buildroot/board/olimex/a20_olinuxino/post-build.sh
Luca Ceresoli 6d3b77e970 olimex_a20_olinuxino_lime: rename board dir to remove _lime suffix
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>
2015-06-30 23:01:18 +02:00

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