d7327c69c8
This commit adds a configuration for the Orange Pi PC board, <http://www.orangepi.org/orangepipc/>. Signed-off-by: Eelco Chaudron <echaudron@xiot.nl> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
12 lines
326 B
Bash
Executable File
12 lines
326 B
Bash
Executable File
#!/bin/sh
|
|
# post-build.sh for OrangePi PC taken from CubieBoard's post-build.sh
|
|
# 2013, Carlo Caione <carlo.caione@gmail.com>
|
|
|
|
BOARD_DIR="$(dirname $0)"
|
|
MKIMAGE=$HOST_DIR/usr/bin/mkimage
|
|
BOOT_CMD=$BOARD_DIR/boot.cmd
|
|
BOOT_CMD_H=$BINARIES_DIR/boot.scr
|
|
|
|
# U-Boot script
|
|
$MKIMAGE -C none -A arm -T script -d $BOOT_CMD $BOOT_CMD_H
|