1
0
Fork 0
mirror of https://github.com/pygos/build.git synced 2024-09-21 04:09:48 +02:00
build/pkg/linux-rpi3/build
David Oberhollenzer cf2e438a45 Bump Raspberry Pi 3 vendor kernel version
Signed-off-by: David Oberhollenzer <david.oberhollenzer@tele2.at>
2018-11-03 19:28:43 +01:00

18 lines
629 B
Text
Executable file

# inherit functions from generic kernel package
source "$SCRIPTDIR/pkg/linux/build"
VERSION="1.20180924-1"
SRCDIR="linux-raspberrypi-kernel_${VERSION}"
TARBALL="raspberrypi-kernel_${VERSION}.tar.gz"
URL="https://github.com/raspberrypi/linux/archive"
SHA256SUM="ee6c769c97d794f11eb098fab4b1c4b3b3af0e406aa0bbc3bf202234eac95347"
DEPENDS="initrd"
check_update() {
local version=$(echo $VERSION | sed 's/-/./g')
curl --silent -L "https://github.com/raspberrypi/linux/releases" | \
grep -o "raspberrypi-kernel_[0-9.]*-[0-9]" | \
sed 's/raspberrypi-kernel_//g' | sed 's/-/./g' | \
verson_find_greatest "$version"
}