1
0
Fork 0
mirror of https://github.com/pygos/build.git synced 2024-05-18 11:36:13 +02:00
build/pkg/boot-rpi3/build
David Oberhollenzer 93a0cb1ca5 cleanup: remove symlink creation and file deletion from package build
We already have a micro managed list of files we include in the packages.

Signed-off-by: David Oberhollenzer <goliath@infraroot.at>
2019-03-07 20:12:19 +01:00

17 lines
335 B
Plaintext
Executable file

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