A collection of kernels used for CI builds.
- Update kernel versions in versions.json
- Commit and make a PR.
You can approximate CI by running buildx.sh
:
$ ./buildx.sh 6.1 amd64 vmlinux --tag foo:vmlinux
Use update-version.sh
(requires jq
):
./update-versions.sh
The configuration consists of common options in config and platform specific options in config-arm64 and config-x64_64.
To add a new config option:
- Try adding it to
config
(keep sorted alphabetically) - In a checkout of the Linux source code:
TARGETPLATFORM=linux/arm64 /path/to/configure-vmlinux.sh
- If any symbols are missing you can now run
make menuconfig
and search for the missing symbols. Figure out which dependencies are missing and add them to the config as well.
Add the config to the arch specific files if it isn't available in general.
The builder image is still built manually.
make image
make push
- Add files, commit and make a PR.