Skip to content

Commit c9013ad

Browse files
committed
Update kernel to 5.0.2
1 parent 7c3836b commit c9013ad

File tree

2 files changed

+144
-111
lines changed

2 files changed

+144
-111
lines changed

kernel/Makefile

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
PCD_VERSION ?= $(shell git describe --tags --always --dirty)
22

3-
KERNEL_VERSION ?= 4.19.10
3+
KERNEL_VERSION ?= 5.0.2
44
LOCAL_VERSION ?= -${PCD_VERSION}
55
ARCH ?= amd64
66

@@ -54,14 +54,14 @@ linux/linux: linux
5454

5555
linux: ../download/linux-${KERNEL_VERSION}.tar.xz
5656
tar xf ../download/linux-${KERNEL_VERSION}.tar.xz
57-
mv linux-$(subst .0,,${KERNEL_VERSION}) linux
57+
mv linux-${KERNEL_VERSION} linux
5858
cp ${ARCH}.config linux/.config
5959
cd linux; [ ! -d ../patches/${ARCH} ] || for p in ../patches/${ARCH}/*.patch; do patch -p 1 < "$$p"; done
6060

6161
$(eval $(call cache,\
62-
https://cdn.kernel.org/pub/linux/kernel/v4.x/linux-$(subst .0,,${KERNEL_VERSION}).tar.xz, \
62+
https://cdn.kernel.org/pub/linux/kernel/v5.x/linux-${KERNEL_VERSION}.tar.xz, \
6363
../download/linux-${KERNEL_VERSION}.tar.xz, \
64-
afe968ceeca93eac2173f9f95d90b2eeb489bafdd2083478ac0b7d0704b33e94)) #kernel
64+
43bfea3a6b24b4e5f63190409a199bee8cb93dbea01c52ad7f017078ebdf7c9b)) #kernel
6565

6666
clean:
6767
-rm linux-${KERNEL_VERSION}.tar.xz

0 commit comments

Comments
 (0)