mirror of
https://github.com/pygos/build.git
synced 2024-11-05 19:47:09 +01:00
David Oberhollenzer
93a0cb1ca5
We already have a micro managed list of files we include in the packages. Signed-off-by: David Oberhollenzer <goliath@infraroot.at>
16 lines
335 B
Text
Executable file
16 lines
335 B
Text
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"
|
|
}
|