1
0
Fork 0
mirror of https://github.com/pygos/build.git synced 2024-05-06 05:46:14 +02:00
build/cfg/rpi3/release

18 lines
513 B
Plaintext
Raw Normal View History

build_release() {
local RELEASE_DIR="$1"
local ROOTFS_SQFS="$2"
local rootfs_image=$(basename $ROOTFS_SQFS)
local bootdir="$RELEASE_DIR/boot"
mkdir -p "$bootdir"
cp -r ${PKGDEPLOYDIR}/linux-rpi3/* "$bootdir"
cp -r ${PKGDEPLOYDIR}/boot-rpi3/* "$bootdir"
cp "$SCRIPTDIR/cfg/$CFG/cmdline.txt" "$bootdir"
cp "$ROOTFS_SQFS" "$bootdir"
sed -i 's/ROOTFSFILE/'$rootfs_image'/g' "$bootdir/cmdline.txt"
cp "$SCRIPTDIR/cfg/$CFG/install.sh" "$RELEASE_DIR"
cp "$SCRIPTDIR/cfg/$CFG/genimage.sh" "$RELEASE_DIR"
}