1
0
Fork 0
mirror of https://github.com/pygos/build.git synced 2024-05-20 04:26:13 +02:00
build/pkg/boot-rpi3/build

22 lines
410 B
Plaintext
Raw Normal View History

# inherit package details from kernel package
source "$SCRIPTDIR/pkg/firmware-rpi3/build"
DEPENDS="toolchain"
build() {
return
}
deploy() {
local SOURCE="$1"
local DEPLOY="$2"
cp -r ${SOURCE}/boot/* "$DEPLOY/"
rm $DEPLOY/kernel7.img
rm $DEPLOY/kernel.img
rm $DEPLOY/COPYING.linux
cp "$SCRIPTDIR/pkg/boot-rpi3/config.txt" "$DEPLOY/config.txt"
cp $SCRIPTDIR/pkg/$PKGNAME/*.{files,desc} "$DEPLOY"
}