c1a9fb9ddb
The orangepi board variants use identical post-build and post-image scripts, so move them up to board/orangepi and add symlinks in the variant subdirectories, similary to how we handle it for the raspberry pi variants. Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
12 lines
323 B
Bash
Executable File
12 lines
323 B
Bash
Executable File
#!/bin/sh
|
|
# post-build.sh for OrangePi 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
|