mirror of
https://github.com/pygos/build.git
synced 2024-11-05 11:37:10 +01:00
David Oberhollenzer
4ebf4797fb
We have to anyway since we use a different libc. Signed-off-by: David Oberhollenzer <goliath@infraroot.at>
28 lines
637 B
Text
Executable file
28 lines
637 B
Text
Executable file
VERSION="1.20190215"
|
|
SRCDIR="firmware-${VERSION}"
|
|
TARBALL="${VERSION}.tar.gz"
|
|
URL="https://github.com/raspberrypi/firmware/archive"
|
|
SHA256SUM="6b6db5f15c400bc1224266fd44238dd9b2479fd09f8a55e36ccdac2120632f8f"
|
|
DEPENDS="toolchain"
|
|
SUBPKG="boot-rpi boot-rpi-dtbo boot-rpi-dtb"
|
|
|
|
prepare() {
|
|
return
|
|
}
|
|
|
|
build() {
|
|
return
|
|
}
|
|
|
|
deploy() {
|
|
local SOURCE="$1"
|
|
|
|
cp -r ${SOURCE}/boot/* "$PKGDEPLOYDIR/"
|
|
cp $SCRIPTDIR/pkg/$PKGNAME/*.{files,desc} "$PKGDEPLOYDIR"
|
|
}
|
|
|
|
check_update() {
|
|
curl --silent -L https://github.com/raspberrypi/firmware/releases | \
|
|
grep -o "[0-9.]\+tar.gz" | sed 's/.tar.gz//g' | \
|
|
verson_find_greatest "$VERSION"
|
|
}
|