You've already forked beagleconnect-freedom
mirror of
https://github.com/beagleboard/beagleconnect-freedom.git
synced 2026-08-02 04:35:36 +00:00
20 lines
471 B
Bash
Executable File
20 lines
471 B
Bash
Executable File
#!/bin/sh
|
|
# 2018, Michael Welling <mwelling@ieee.org>
|
|
|
|
BOARD_DIR="$(dirname $0)"
|
|
|
|
# copy the uEnv.txt to the output/images directory
|
|
cp $BOARD_DIR/uEnv.txt $BINARIES_DIR/uEnv.txt
|
|
|
|
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}"
|