You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
11 lines
314 B
11 lines
314 B
#!/bin/sh
|
|
# post-build.sh for pcDuino taken from OrangePi post-build.sh
|
|
# 2013, Carlo Caione <carlo.caione@gmail.com>
|
|
|
|
BOARD_DIR="$(dirname $0)"
|
|
MKIMAGE=$HOST_DIR/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
|
|
|