1
0
mirror of https://github.com/rancher/os-kernel.git synced 2025-09-05 23:00:16 +00:00

[x86] Upgrade kernel to 4.19.x

This commit is contained in:
niusmallnan
2019-04-29 14:19:05 +08:00
parent 677c22ab44
commit 92911d1520
7 changed files with 1355 additions and 1209 deletions

View File

@@ -27,7 +27,7 @@ cp ${CONFIG}/${KERNEL_ARCH}/kernel-config ${DIR}/.config
pushd .
cd ${DIR}
echo "are there patches in ${PATCHES}/${KERNEL_ARCH}"
for p in ${PATCHES}/${KERNEL_ARCH}/*.patch; do
for p in `find ${PATCHES}/${KERNEL_ARCH} -name "*.patch"`; do
echo "patching $p"
patch -p1 -i $p
done