19 lines
379 B
Bash
Executable File
19 lines
379 B
Bash
Executable File
#!/bin/sh
|
|
|
|
set -e
|
|
|
|
BOARD_DIR=$(dirname "$0")
|
|
|
|
genimage_tmp=$(mktemp -d)
|
|
trap 'rm -rf "${genimage_tmp}"' EXIT
|
|
|
|
mkdir -p "${genimage_tmp}"/rootfs "${genimage_tmp}"/tmp
|
|
|
|
cd "${BINARIES_DIR}"
|
|
genimage \
|
|
--rootpath "${genimage_tmp}/rootfs" \
|
|
--tmppath "${genimage_tmp}/tmp" \
|
|
--inputpath "${BINARIES_DIR}" \
|
|
--outputpath "${BINARIES_DIR}" \
|
|
--config "${BOARD_DIR}"/genimage.cfg
|