summaryrefslogtreecommitdiff
path: root/board/orangepi/post-image.sh
diff options
context:
space:
mode:
Diffstat (limited to 'board/orangepi/post-image.sh')
-rwxr-xr-xboard/orangepi/post-image.sh14
1 files changed, 14 insertions, 0 deletions
diff --git a/board/orangepi/post-image.sh b/board/orangepi/post-image.sh
new file mode 100755
index 000000000..359b4c9e7
--- /dev/null
+++ b/board/orangepi/post-image.sh
@@ -0,0 +1,14 @@
+#!/bin/sh
+
+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}"