mirror of
https://github.com/godotengine/buildroot.git
synced 2026-01-05 14:09:53 +03:00
Use support/scripts/genimage.sh, instead, which prevents duplicating
TARGET_DIR under ${BUILD_DIR}/genimage.tmp/root.
Use a post-build script to copy uEnv.txt to BINARIES_DIR, as made for
beagleboneai.
Keep the post-image script because it is still used by beaglebone_qt5.
Signed-off-by: Carlos Santos <unixmania@gmail.com>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
5 lines
83 B
Bash
Executable File
5 lines
83 B
Bash
Executable File
#!/bin/sh
|
|
BOARD_DIR="$(dirname $0)"
|
|
|
|
cp $BOARD_DIR/uEnv.txt $BINARIES_DIR/uEnv.txt
|