31be2ec220
Since things are no longer installed in $(HOST_DIR)/usr, the callers should also not refer to it. This is a mechanical change with git grep -l 'HOST_DIR}\?/usr/' board | xargs sed -i 's%\(HOST_DIR}\?\)/usr/%\1/%g' Signed-off-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
13 lines
390 B
Bash
Executable File
13 lines
390 B
Bash
Executable File
#!/bin/sh
|
|
# post-build.sh for Nanopi NEO, based on the Orange Pi PC
|
|
# 2013, Carlo Caione <carlo.caione@gmail.com>
|
|
# 2016, "Yann E. MORIN" <yann.morin.1998@free.fr>
|
|
|
|
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}"
|