blob: 149ffb1054422906d41f4c6f1706eb46f86b7d81 [file] [log] [blame]
Pieter Smith80ba9352017-03-28 21:35:37 +02001#!/bin/sh
2
3BOARD_DIR="$(dirname $0)"
4GENIMAGE_CFG="${BOARD_DIR}/genimage.cfg"
5GENIMAGE_TMP="${BUILD_DIR}/genimage.tmp"
6
7rm -rf "${GENIMAGE_TMP}"
8
9genimage \
10 --rootpath "${TARGET_DIR}" \
11 --tmppath "${GENIMAGE_TMP}" \
12 --inputpath "${BINARIES_DIR}" \
13 --outputpath "${BINARIES_DIR}" \
14 --config "${GENIMAGE_CFG}"
15
16exit $?
17