d479688e02
As the vendor folder friendlyarm is created, move board nanopi-neo also under vendor folder. Signed-off-by: Chakra Divi <chakra@openedev.com> Acked-by: "Yann E. MORIN" <yann.morin.1998@free.fr> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
16 lines
415 B
Bash
Executable File
16 lines
415 B
Bash
Executable File
#!/bin/sh
|
|
# post-image.sh for Nanopi NEO, based on the Orange Pi PC
|
|
|
|
BOARD_DIR="$( dirname "${0}" )"
|
|
GENIMAGE_CFG="${BOARD_DIR}/genimage.cfg"
|
|
GENIMAGE_TMP="${BUILD_DIR}/genimage.tmp"
|
|
|
|
rm -rf "${GENIMAGE_TMP}"
|
|
|
|
genimage \
|
|
--rootpath "${TARGET_DIR}" \
|
|
--tmppath "${GENIMAGE_TMP}" \
|
|
--inputpath "${BINARIES_DIR}" \
|
|
--outputpath "${BINARIES_DIR}" \
|
|
--config "${GENIMAGE_CFG}"
|