mirror of
https://github.com/pygos/build.git
synced 2024-11-01 01:45:37 +01:00
fc278364e5
Signed-off-by: David Oberhollenzer <david.oberhollenzer@tele2.at>
20 lines
348 B
Text
Executable file
20 lines
348 B
Text
Executable file
# inherit package details from kernel package
|
|
source "$SCRIPTDIR/pkg/firmware-rpi3/build"
|
|
DEPENDS=""
|
|
|
|
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"
|
|
}
|