@@ -20,13 +20,13 @@ Clone this repo.
2020```
2121$ cd ci-scripts
2222$ cd build
23- $ make pull-image@ppc64le@ubuntu@21.04
24- $ make SRC=~/src/linux kernel@ppc64le@ubuntu@21.04 JFACTOR=$(nproc)
23+ $ make pull-image@ppc64le@ubuntu@21.10
24+ $ make SRC=~/src/linux kernel@ppc64le@ubuntu@21.10 JFACTOR=$(nproc)
2525```
2626
27- This will build you a ` ppc64le_defconfig ` using the Ubuntu 21.04 toolchain.
27+ This will build you a ` ppc64le_defconfig ` using the Ubuntu 21.10 toolchain.
2828
29- The kernel will be in ` output/ppc64le@ubuntu@21.04 /ppc64le_defconfig/vmlinux ` .
29+ The kernel will be in ` output/ppc64le@ubuntu@21.10 /ppc64le_defconfig/vmlinux ` .
3030
3131For more help try ` make help ` .
3232
@@ -36,14 +36,14 @@ Building different defconfigs
3636You can specify a defconfig with ` DEFCONFIG ` .
3737
3838```
39- $ make SRC=~/src/linux kernel@ppc64le@ubuntu@21.04 DEFCONFIG=powernv_defconfig JFACTOR=$(nproc)
39+ $ make SRC=~/src/linux kernel@ppc64le@ubuntu@21.10 DEFCONFIG=powernv_defconfig JFACTOR=$(nproc)
4040```
4141
4242Note that the subarch (eg. ` ppc64le ` ) needs to match the defconfig, so to build
4343` ppc64_defconfig ` , use ` ppc64 ` .
4444
4545```
46- $ make SRC=~/src/linux kernel@ppc64@ubuntu@21.04 DEFCONFIG=ppc64_defconfig JFACTOR=$(nproc)
46+ $ make SRC=~/src/linux kernel@ppc64@ubuntu@21.10 DEFCONFIG=ppc64_defconfig JFACTOR=$(nproc)
4747```
4848
4949Different toolchains
@@ -56,6 +56,7 @@ There are images for various toolchains, they are encoded in the distro name/ver
5656 - kernel.org gcc 9.3.0 ` korg@9.3.0 `
5757 - kernel.org gcc 8.1.0 ` korg@8.1.0 `
5858 - kernel.org gcc 5.5.0 ` korg@5.5.0 `
59+ - Ubuntu 21.10 ` ubuntu@21.10 `
5960 - Ubuntu 21.04 ` ubuntu@21.04 `
6061 - Ubuntu 20.10 ` ubuntu@20.10 `
6162 - Ubuntu 20.04 ` ubuntu@20.04 `
@@ -74,13 +75,13 @@ Building selftests
7475To build the kernel selftests:
7576
7677```
77- $ make SRC=~/src/linux selftests@ppc64le@ubuntu@21.04 JFACTOR=$(nproc)
78+ $ make SRC=~/src/linux selftests@ppc64le@ubuntu@21.10 JFACTOR=$(nproc)
7879```
7980
8081Or just the powerpc selftests:
8182
8283```
83- $ make SRC=~/src/linux ppctests@ppc64le@ubuntu@21.04 JFACTOR=$(nproc)
84+ $ make SRC=~/src/linux ppctests@ppc64le@ubuntu@21.10 JFACTOR=$(nproc)
8485```
8586
8687You can also build the powerpc selftests with all available toolchains using:
@@ -94,17 +95,17 @@ Other options
9495
9596As mentioned above you pass the make -j factor with ` JFACTOR=n ` .
9697
97- To run sparse use the ` ubuntu@21.04 ` image and pass ` SPARSE=1 ` .
98+ To run sparse use the ` ubuntu@21.10 ` image and pass ` SPARSE=1 ` .
9899
99100```
100- $ make SRC=~/src/linux kernel@ppc64le@ubuntu@21.04 SPARSE=1 JFACTOR=$(nproc)
101+ $ make SRC=~/src/linux kernel@ppc64le@ubuntu@21.10 SPARSE=1 JFACTOR=$(nproc)
101102```
102103
103- The log will be in eg. ` output/ppc64le@ubuntu@21.04 /ppc64le_defconfig/sparse.log ` .
104+ The log will be in eg. ` output/ppc64le@ubuntu@21.10 /ppc64le_defconfig/sparse.log ` .
104105
105106To build modules pass ` MODULES=1 `
106107
107- To build with clang pass ` CLANG=1 ` , only works using the Ubuntu ` 21.04 ` images.
108+ To build with clang pass ` CLANG=1 ` , only works using the Ubuntu ` 21.10 ` images.
108109
109110For a quiet build pass ` QUIET=1 ` , for verbose pass ` VERBOSE=1 ` .
110111
@@ -126,7 +127,7 @@ Building your own image
126127If you don't want to pull an untrusted image, you can build it yourself with:
127128
128129```
129- $ make rebuild-image@ppc64le@ubuntu@21.04
130+ $ make rebuild-image@ppc64le@ubuntu@21.10
130131```
131132
132133Note that the build mounts the source tree read-only, so nothing it does can
0 commit comments