]> git.pld-linux.org Git - packages/kernel.git/blob - update-source.sh
Up to 5.15.28.
[packages/kernel.git] / update-source.sh
1 #!/bin/sh
2 set -xe
3
4 #BRANCH=aufs5.x-rcN
5 BRANCH=aufs5.15.5
6
7 # aufs5
8 [ -d aufs5-standalone ] || git clone git://github.com/sfjro/aufs5-standalone.git
9 cd aufs5-standalone
10 git checkout -b ${BRANCH} origin/${BRANCH}
11 git pull
12 cat aufs5-kbuild.patch aufs5-base.patch aufs5-mmap.patch aufs5-standalone.patch > ../kernel-aufs5.patch
13 rm -rf linux && mkdir linux
14 cp -a Documentation fs include linux
15 diff -urN /usr/share/empty linux | filterdiff -x linux/include/uapi/linux/Kbuild >> ../kernel-aufs5.patch
16 cat aufs5-loopback.patch >> ../kernel-aufs5.patch
17
18 # other
This page took 0.03055 seconds and 3 git commands to generate.