mirror of
https://github.com/linuxkit/linuxkit.git
synced 2025-07-19 17:26:28 +00:00
Merge pull request #1720 from rneugeba/kbuild
Major rewrite of the kernel build
This commit is contained in:
commit
d1cebb3b55
@ -1,10 +0,0 @@
|
||||
DIRS = $(shell find . -type d -depth 1)
|
||||
.PHONY: clean dirs $(DIRS)
|
||||
|
||||
push: $(DIRS)
|
||||
|
||||
$(DIRS):
|
||||
$(MAKE) -C $@
|
||||
|
||||
clean:
|
||||
rm -f hash
|
@ -1,4 +1,22 @@
|
||||
# Working with Linux kernel patches for LinuxKit
|
||||
# LinuxKit kernels
|
||||
|
||||
Currently, LinuxKit supports a number of kernels. These kernels are
|
||||
typically based on the latest stable releases and are updated
|
||||
frequently to include bug and security fixes. For some kernels we do
|
||||
carry some additional patches, which are mostly back-ported fixes from
|
||||
newer kernels. The full kernel source with patches is on
|
||||
[github](https://github.com/linuxkit/linux).
|
||||
|
||||
The kernel images are stored on Hub under
|
||||
[linuxkit/kernel](https://hub.docker.com/r/linuxkit/kernel/). Each
|
||||
kernel image is tagged with the full kernel version plus the hash of
|
||||
the files it was created from (git tree hash of the `./kernel`
|
||||
directory). For convenience, the latest kernel of each stable series
|
||||
is also available under the a shorthand tag,
|
||||
e.g. `linuxkit/kernel:4.9.x` for the latest `4.9` kernel.
|
||||
|
||||
|
||||
## Working with Linux kernel patches for LinuxKit
|
||||
|
||||
We may apply patches to the Linux kernel used in LinuxKit, primarily to
|
||||
cherry-pick some upstream patches or to add some additional
|
||||
@ -12,10 +30,13 @@ Patches are located in `kernel/patches-<kernel version>` and should follow these
|
||||
which they are applied.
|
||||
- If patches are cherry-picked, they *must* be cherry-picked with `-x`
|
||||
to contain the original commit ID.
|
||||
- If patches are from a different git tree (other than the stable
|
||||
tree), or from a mailing list posting they should contain an
|
||||
`Origin:` line with a link to the source.
|
||||
|
||||
This document outlines the recommended procedure to handle
|
||||
patches. The general process is to apply them to a branch of the
|
||||
[Linux stable tree](https://kernel.googlesource.com/pub/scm/linux/kernel/git/stable/linux-stable/)
|
||||
[Linux stable tree](https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux-stable.git/)
|
||||
and then export them with `git format-patch`.
|
||||
|
||||
If you want to add or remove patches currently used, please also ping
|
||||
@ -24,12 +45,13 @@ ensure that patches are carried forward if we update the kernel in the
|
||||
future.
|
||||
|
||||
|
||||
# Preparation
|
||||
### Preparation
|
||||
|
||||
Patches are applied to point releases of the linux stable tree. You need an up-to-date copy of that tree:
|
||||
```sh
|
||||
git clone git://git.kernel.org/pub/scm/linux/kernel/git/stable/linux-stable.git
|
||||
```
|
||||
Add it as a remote to a clone of the [LinuxKit clone](https://github.com/linuxkit/linux).
|
||||
|
||||
We use the following variables:
|
||||
- `KITSRC`: Base directory of LinuxKit repository
|
||||
@ -42,7 +64,7 @@ LINUXSRC=~/src/linuxkit/linux
|
||||
to refer to the location of the LinuxKit and Linux kernel trees.
|
||||
|
||||
|
||||
# Updating the patches to a new kernel version
|
||||
### Updating the patches to a new kernel version
|
||||
|
||||
There are different ways to do this, but we recommend applying the patches to the current version and then rebase to the new version. We define the following variables to refer to the current base tag and the new tag you want to rebase the patches to:
|
||||
```sh
|
||||
@ -53,24 +75,24 @@ NEWTAG=v4.9.15
|
||||
If you don't already have a branch, it's best to import the current patch set and then rebase:
|
||||
```sh
|
||||
cd $LINUXSRC
|
||||
git checkout -b ${NEWTAG}-moby ${CURTAG}
|
||||
git checkout -b ${NEWTAG}-linuxkit ${CURTAG}
|
||||
git am ${KITSRC}/kernel/patches/*.patch
|
||||
git rebase ${NEWTAG}-moby ${NEWTAG}
|
||||
git rebase ${NEWTAG}-linuxkit ${NEWTAG}
|
||||
```
|
||||
|
||||
The `git am` should not have any conflicts and if the rebase has conflicts resolve them, then `git add <files>` and `git rebase --continue`.
|
||||
|
||||
If you already have linux tree with a `${CURTAG}-moby` branch, you can rebase by creating a new branch from the current branch and then rebase:
|
||||
If you already have linux tree with a `${CURTAG}-linuxkit` branch, you can rebase by creating a new branch from the current branch and then rebase:
|
||||
```sh
|
||||
cd $LINUXSRC
|
||||
git checkout ${CURTAG}-moby
|
||||
git branch ${NEWTAG}-moby ${CURTAG}-moby
|
||||
git rebase --onto ${NEWTAG} ${NEWTAG} ${NEWTAG}-moby
|
||||
git checkout ${CURTAG}-linuxkit
|
||||
git branch ${NEWTAG}-linuxkit ${CURTAG}-linuxkit
|
||||
git rebase --onto ${NEWTAG} ${NEWTAG} ${NEWTAG}-linuxkit
|
||||
```
|
||||
Again, resolve any conflicts as described above.
|
||||
|
||||
|
||||
# Adding/Removing patches
|
||||
### Adding/Removing patches
|
||||
|
||||
If you want to add or remove patches make sure you have an up-to-date branch with the currently applied patches (see above). Then either any normal means (`git cherry-pick -x`, `git am`, or `git commit`, etc) to add new patches. For cherry-picked patches also please add a `Origin:` line after the DCO lines with a reference the git tree the patch was cherry-picked from.
|
||||
|
||||
@ -82,13 +104,13 @@ DCO lines, e.g.:
|
||||
Origin: https://patchwork.ozlabs.org/patch/622404/
|
||||
```
|
||||
|
||||
# Export patches to LinuxKit
|
||||
### Export patches to LinuxKit
|
||||
|
||||
To export patches to LinuxKit, you should use `git format-patch` from the Linux tree, e.g., something along these lines:
|
||||
```sh
|
||||
cd $LINUXSRC
|
||||
rm $KITSRC/kernel/patches-4.9/*
|
||||
git format-patch -o $KITSRC/kernel/patches-4.9 v4.9.15..HEAD
|
||||
rm $KITSRC/kernel/patches-4.9.x/*
|
||||
git format-patch -o $KITSRC/kernel/patches-4.9.x v4.9.15..HEAD
|
||||
```
|
||||
|
||||
The, create a PR for LinuxKit.
|
@ -1,6 +1,7 @@
|
||||
FROM linuxkit/alpine-build-kernel:cfdd576c36a52ed2dd62f237f79eeedc2dd3697b@sha256:3fe08db373a9373ba1616a485858f01ebd2d7a3cb364a099d0ed8b45fa419da2
|
||||
FROM linuxkit/kernel-compile:1b396c221af673757703258159ddc8539843b02b@sha256:6b32d205bfc6407568324337b707d195d027328dbfec554428ea93e7b0a8299b AS kernel-build
|
||||
|
||||
ARG KERNEL_VERSION
|
||||
ARG KERNEL_SERIES
|
||||
ARG DEBUG=0
|
||||
|
||||
ENV KERNEL_SOURCE=https://www.kernel.org/pub/linux/kernel/v4.x/linux-${KERNEL_VERSION}.tar.xz
|
||||
@ -9,7 +10,7 @@ RUN curl -fsSL -o linux-${KERNEL_VERSION}.tar.xz ${KERNEL_SOURCE}
|
||||
|
||||
RUN cat linux-${KERNEL_VERSION}.tar.xz | tar --absolute-names -xJ && mv /linux-${KERNEL_VERSION} /linux
|
||||
|
||||
COPY kernel_config /linux/arch/x86/configs/x86_64_defconfig
|
||||
COPY kernel_config-${KERNEL_SERIES} /linux/arch/x86/configs/x86_64_defconfig
|
||||
COPY kernel_config.debug /linux/debug_config
|
||||
|
||||
RUN if [ $DEBUG -ne "0" ]; then \
|
||||
@ -18,7 +19,7 @@ RUN if [ $DEBUG -ne "0" ]; then \
|
||||
fi
|
||||
|
||||
# Apply local patches
|
||||
COPY patches-4.9 /patches
|
||||
COPY patches-${KERNEL_SERIES} /patches
|
||||
RUN cd /linux && \
|
||||
set -e && for patch in /patches/*.patch; do \
|
||||
echo "Applying $patch"; \
|
||||
@ -51,3 +52,14 @@ RUN DVER=$(basename $(find /tmp/kernel-modules/lib/modules/ -mindepth 1 -maxdept
|
||||
( cd /tmp && tar cf /kernel-dev.tar usr/src )
|
||||
|
||||
RUN printf "KERNEL_SOURCE=${KERNEL_SOURCE}\n" > /kernel-source-info
|
||||
|
||||
|
||||
FROM linuxkit/toybox-media:eee3dd4d72cd784801e95b1781e6c4f9d8a5e5eb@sha256:7f940e687164ee2676e11c61705c79f7dd2d144ee87ad17a494848a7045f5f53
|
||||
ENTRYPOINT []
|
||||
CMD []
|
||||
WORKDIR /
|
||||
COPY --from=kernel-build bzImage /
|
||||
COPY --from=kernel-build kernel-headers.tar /
|
||||
COPY --from=kernel-build kernel-modules.tar /kernel.tar
|
||||
COPY --from=kernel-build kernel-dev.tar /
|
||||
COPY --from=kernel-build kernel-source-info /
|
||||
|
@ -1,54 +0,0 @@
|
||||
FROM linuxkit/alpine-build-kernel:cfdd576c36a52ed2dd62f237f79eeedc2dd3697b@sha256:3fe08db373a9373ba1616a485858f01ebd2d7a3cb364a099d0ed8b45fa419da2
|
||||
|
||||
ARG KERNEL_VERSION
|
||||
ARG DEBUG=0
|
||||
|
||||
ENV KERNEL_SOURCE=https://www.kernel.org/pub/linux/kernel/v4.x/linux-${KERNEL_VERSION}.tar.xz
|
||||
|
||||
RUN curl -fsSL -o linux-${KERNEL_VERSION}.tar.xz ${KERNEL_SOURCE}
|
||||
|
||||
RUN cat linux-${KERNEL_VERSION}.tar.xz | tar --absolute-names -xJ && mv /linux-${KERNEL_VERSION} /linux
|
||||
|
||||
# NOTE: This currently re-uses the 4.9 kernel config
|
||||
COPY kernel_config /linux/arch/x86/configs/x86_64_defconfig
|
||||
COPY kernel_config.debug /linux/debug_config
|
||||
|
||||
RUN if [ $DEBUG -ne "0" ]; then \
|
||||
sed -i 's/CONFIG_PANIC_ON_OOPS=y/# CONFIG_PANIC_ON_OOPS is not set/' /linux/arch/x86/configs/x86_64_defconfig; \
|
||||
cat /linux/debug_config >> /linux/arch/x86/configs/x86_64_defconfig; \
|
||||
fi
|
||||
|
||||
# Apply local patches
|
||||
COPY patches-4.10 /patches
|
||||
RUN cd /linux && \
|
||||
set -e && for patch in /patches/*.patch; do \
|
||||
echo "Applying $patch"; \
|
||||
patch -p1 < "$patch"; \
|
||||
done
|
||||
|
||||
RUN cd /linux && \
|
||||
make defconfig && \
|
||||
make oldconfig && \
|
||||
make -j "$(getconf _NPROCESSORS_ONLN)" KCFLAGS="-fno-pie"
|
||||
RUN cd /linux && \
|
||||
make INSTALL_MOD_PATH=/tmp/kernel-modules modules_install && \
|
||||
( DVER=$(basename $(find /tmp/kernel-modules/lib/modules/ -mindepth 1 -maxdepth 1)) && \
|
||||
cd /tmp/kernel-modules/lib/modules/$DVER && \
|
||||
rm build source && \
|
||||
ln -s /usr/src/linux-headers-$DVER build ) && \
|
||||
mkdir -p /tmp/kernel-headers/usr && \
|
||||
make INSTALL_HDR_PATH=/tmp/kernel-headers/usr headers_install && \
|
||||
( cd /tmp/kernel-headers && tar cf /kernel-headers.tar usr ) && \
|
||||
( cd /tmp/kernel-modules && tar cf /kernel-modules.tar lib ) && \
|
||||
cp vmlinux arch/x86_64/boot/bzImage /
|
||||
|
||||
RUN DVER=$(basename $(find /tmp/kernel-modules/lib/modules/ -mindepth 1 -maxdepth 1)) && \
|
||||
dir=/tmp/usr/src/linux-headers-$DVER && \
|
||||
mkdir -p $dir && \
|
||||
cp /linux/.config $dir && \
|
||||
cd /linux && \
|
||||
cp -a include "$dir" && \
|
||||
mkdir -p "$dir"/arch/x86 && cp -a arch/x86/include "$dir"/arch/x86/ && \
|
||||
( cd /tmp && tar cf /kernel-dev.tar usr/src )
|
||||
|
||||
RUN printf "KERNEL_SOURCE=${KERNEL_SOURCE}\n" > /kernel-source-info
|
@ -1,56 +0,0 @@
|
||||
FROM linuxkit/alpine-build-kernel:cfdd576c36a52ed2dd62f237f79eeedc2dd3697b@sha256:3fe08db373a9373ba1616a485858f01ebd2d7a3cb364a099d0ed8b45fa419da2
|
||||
|
||||
ARG KERNEL_VERSION=4.4.53
|
||||
|
||||
ENV KERNEL_SOURCE=https://www.kernel.org/pub/linux/kernel/v4.x/linux-${KERNEL_VERSION}.tar.xz
|
||||
|
||||
RUN curl -fsSL -o linux-${KERNEL_VERSION}.tar.xz ${KERNEL_SOURCE}
|
||||
|
||||
RUN cat linux-${KERNEL_VERSION}.tar.xz | tar --absolute-names -xJ && mv /linux-${KERNEL_VERSION} /linux
|
||||
|
||||
COPY kernel_config /linux/arch/x86/configs/x86_64_defconfig
|
||||
COPY kernel_config.debug /linux/debug_config
|
||||
COPY kernel_config.4.4 /linux/kernel_config.4.4
|
||||
RUN cat /linux/kernel_config.4.4 >> /linux/arch/x86/configs/x86_64_defconfig
|
||||
|
||||
ARG DEBUG=0
|
||||
|
||||
RUN if [ $DEBUG -ne "0" ]; then \
|
||||
sed -i 's/CONFIG_PANIC_ON_OOPS=y/# CONFIG_PANIC_ON_OOPS is not set/' /linux/arch/x86/configs/x86_64_defconfig; \
|
||||
cat /linux/debug_config >> /linux/arch/x86/configs/x86_64_defconfig; \
|
||||
fi
|
||||
|
||||
# Apply local patches
|
||||
COPY patches-4.4 /patches
|
||||
RUN cd /linux && \
|
||||
set -e && for patch in /patches/*.patch; do \
|
||||
echo "Applying $patch"; \
|
||||
patch -p1 < "$patch"; \
|
||||
done
|
||||
|
||||
RUN cd /linux && \
|
||||
make defconfig && \
|
||||
make oldconfig && \
|
||||
make -j "$(getconf _NPROCESSORS_ONLN)" KCFLAGS="-fno-pie"
|
||||
RUN cd /linux && \
|
||||
make INSTALL_MOD_PATH=/tmp/kernel-modules modules_install && \
|
||||
( DVER=$(basename $(find /tmp/kernel-modules/lib/modules/ -mindepth 1 -maxdepth 1)) && \
|
||||
cd /tmp/kernel-modules/lib/modules/$DVER && \
|
||||
rm build source && \
|
||||
ln -s /usr/src/linux-headers-$DVER build ) && \
|
||||
mkdir -p /tmp/kernel-headers/usr && \
|
||||
make INSTALL_HDR_PATH=/tmp/kernel-headers/usr headers_install && \
|
||||
( cd /tmp/kernel-headers && tar cf /kernel-headers.tar usr ) && \
|
||||
( cd /tmp/kernel-modules && tar cf /kernel-modules.tar lib ) && \
|
||||
cp vmlinux arch/x86_64/boot/bzImage /
|
||||
|
||||
RUN DVER=$(basename $(find /tmp/kernel-modules/lib/modules/ -mindepth 1 -maxdepth 1)) && \
|
||||
dir=/tmp/usr/src/linux-headers-$DVER && \
|
||||
mkdir -p $dir && \
|
||||
cp /linux/.config $dir && \
|
||||
cd /linux && \
|
||||
cp -a include "$dir" && \
|
||||
mkdir -p "$dir"/arch/x86 && cp -a arch/x86/include "$dir"/arch/x86/ && \
|
||||
( cd /tmp && tar cf /kernel-dev.tar usr/src )
|
||||
|
||||
RUN printf "KERNEL_SOURCE=${KERNEL_SOURCE}\n" > /kernel-source-info
|
150
kernel/Makefile
150
kernel/Makefile
@ -1,92 +1,64 @@
|
||||
DEBUG ?= 0
|
||||
|
||||
all: bzImage tag
|
||||
|
||||
# We push the image to hub twice, once with the full kernel version of
|
||||
# "mobylinux/kernel:<kernel version>.<major version>.<minor version>-<n>",
|
||||
# where "<n>" is a monotonically increasing config number, and as
|
||||
# "mobylinux/kernel:<kernel version>.<major version>.x". This version
|
||||
# number is stored in IMAGE_VERSION.
|
||||
# This builds the supported LinuxKit kernels. Kernels are wrapped up
|
||||
# in a minimal toybox container, which contains the bzImage, a tar
|
||||
# ball with modules and the kernel source.
|
||||
#
|
||||
# We expect most users to us the "<kernel version>.<major version>.x"
|
||||
# variant as this simply is the latest version of a given major kernel
|
||||
# version. This version number is stored in IMAGE_MAJOR_VERSION.
|
||||
# Each kernel is pushed to hub twice, once as
|
||||
# linuxkit/kernel:<kernel>.<major>.<minor>-<hash> and once as
|
||||
# inuxkit/kernel:<kernel>.<major>.x. The <hash> is the git tree hash
|
||||
# of the current directory. The build will only rebuild the kernel
|
||||
# image if the git tree hash changed.
|
||||
|
||||
# Enable a debug kernel
|
||||
DEBUG?=0
|
||||
# Git tree hash of this directory. Override to force build
|
||||
HASH?=$(shell git ls-tree HEAD -- ../$(notdir $(CURDIR)) | awk '{print $$3}')
|
||||
# Name on Hub
|
||||
IMAGE:=kernel
|
||||
|
||||
.PHONY: check tag push sign
|
||||
# Targets:
|
||||
# build: builds all kernels
|
||||
# push: pushes all tagged kernel images to hub
|
||||
# sign: sign and push all kernel images to hub
|
||||
build:
|
||||
push:
|
||||
sign:
|
||||
|
||||
# A template for defining kernel build
|
||||
# Arguments:
|
||||
# $1: Full kernel version, e.g., 4.9.22
|
||||
# $2: Kernel "series", e.g., 4.9.x
|
||||
# This defines targets like:
|
||||
# tag_4.9.x, push_4.9.x and sign_4.9.x
|
||||
# and adds them as dependencies to the global targets
|
||||
define kernel
|
||||
build_$(2): Dockerfile Makefile $(wildcard patches-$(2)/*) kernel_config-$(2) kernel_config.debug
|
||||
docker pull linuxkit/$(IMAGE):$(1)-$(HASH) || \
|
||||
docker build \
|
||||
--build-arg KERNEL_VERSION=$(1) \
|
||||
--build-arg KERNEL_SERIES=$(2) \
|
||||
--no-cache -t linuxkit/$(IMAGE):$(1)-$(HASH) .
|
||||
|
||||
push_$(2): build_$(2)
|
||||
docker pull linuxkit/$(IMAGE):$(1)-$(HASH) || \
|
||||
(docker push linuxkit/$(IMAGE):$(1)-$(HASH) && \
|
||||
docker tag linuxkit/$(IMAGE):$(1)-$(HASH) linuxkit/$(IMAGE):$(2) && \
|
||||
docker push linuxkit/$(IMAGE):$(2))
|
||||
|
||||
sign_$(2): build_$(2)
|
||||
DOCKER_CONTENT_TRUST=1 docker pull linuxkit/$(IMAGE):$(1)-$(HASH) || \
|
||||
(DOCKER_CONTENT_TRUST=1 docker push linuxkit/$(IMAGE):$(1)-$(HASH) && \
|
||||
docker tag linuxkit/$(IMAGE):$(1)-$(HASH) linuxkit/$(IMAGE):$(2) && \
|
||||
DOCKER_CONTENT_TRUST=1 docker push linuxkit/$(IMAGE):$(2))
|
||||
|
||||
build: build_$(2)
|
||||
push: push_$(2)
|
||||
sign: sign_$(2)
|
||||
endef
|
||||
|
||||
#
|
||||
# For IMAGE_VERSION, the "<n>" must be increased whenever
|
||||
# the kernel config or the patches change. We don't expect this to
|
||||
# happen very often as the minor version number gets update quite
|
||||
# frequently.
|
||||
# Build Targets
|
||||
#
|
||||
# IMAGE_VERSION is used to determine if a new image should be pushed to hub.
|
||||
ifeq ($(KERNEL),v4.4)
|
||||
KERNEL_VERSION=4.4.61
|
||||
IMAGE_VERSION=$(KERNEL_VERSION)-1
|
||||
IMAGE_MAJOR_VERSION=4.4.x
|
||||
DEPS=Dockerfile.4.4 Makefile kernel_config kernel_config.debug kernel_config.4.4 patches-4.4
|
||||
else
|
||||
ifeq ($(KERNEL),v4.10)
|
||||
KERNEL_VERSION=4.10.10
|
||||
IMAGE_VERSION=$(KERNEL_VERSION)-1
|
||||
IMAGE_MAJOR_VERSION=4.10.x
|
||||
DEPS=Dockerfile.4.10 Makefile kernel_config kernel_config.debug patches-4.10
|
||||
else
|
||||
KERNEL_VERSION=4.9.22
|
||||
IMAGE_VERSION=$(KERNEL_VERSION)-1
|
||||
IMAGE_MAJOR_VERSION=4.9.x
|
||||
DEPS=Dockerfile Makefile kernel_config kernel_config.debug patches-4.9
|
||||
endif
|
||||
endif
|
||||
|
||||
kernel.tag: $(DEPS)
|
||||
BUILD=$$( tar cf - $^ | docker build -f $< --build-arg DEBUG=$(DEBUG) --build-arg KERNEL_VERSION=$(KERNEL_VERSION) -q - ) && [ -n "$$BUILD" ] && echo "Built $$BUILD" && echo "$$BUILD" > $@
|
||||
|
||||
bzImage: kernel.tag
|
||||
rm -rf etc/kernel-patches
|
||||
mkdir -p x86_64 etc lib usr sbin etc/kernel-patches
|
||||
docker run --rm --net=none --log-driver=none $(shell cat kernel.tag) tar cf - bzImage kernel-dev.tar kernel-headers.tar vmlinux kernel-modules.tar | tar xf - -C x86_64
|
||||
cp x86_64/kernel-modules.tar kernel.tar
|
||||
cp x86_64/bzImage $@
|
||||
|
||||
.PHONY: image push tag
|
||||
|
||||
MEDIA_TOYBOX=linuxkit/toybox-media:d7e82a7d19ccc84c9071fa7a88ecaa58ae958f7c@sha256:4c7d25f2be2429cd08417c36e04161cb924e46f3e419ee33a0aa9ff3a0942e02
|
||||
|
||||
IMAGE=kernel
|
||||
|
||||
default: push
|
||||
|
||||
Dockerfile.media:
|
||||
printf "FROM $(MEDIA_TOYBOX)\nADD . /\n" > $@
|
||||
|
||||
image: Dockerfile.media bzImage kernel.tar $(DEPS)
|
||||
tar cf - $^ | docker build --no-cache -t $(IMAGE):build -f Dockerfile.media -
|
||||
|
||||
push: image
|
||||
docker pull linuxkit/$(IMAGE):$(IMAGE_VERSION) || \
|
||||
(docker tag $(IMAGE):build linuxkit/$(IMAGE):$(IMAGE_VERSION) && \
|
||||
docker push linuxkit/$(IMAGE):$(IMAGE_VERSION) && \
|
||||
docker tag $(IMAGE):build linuxkit/$(IMAGE):$(IMAGE_MAJOR_VERSION) && \
|
||||
docker push linuxkit/$(IMAGE):$(IMAGE_MAJOR_VERSION))
|
||||
docker rmi $(IMAGE):build
|
||||
rm -f hash
|
||||
|
||||
sign: image
|
||||
DOCKER_CONTENT_TRUST=1 docker pull linuxkit/$(IMAGE):$(IMAGE_VERSION) || \
|
||||
(docker tag $(IMAGE):build linuxkit/$(IMAGE):$(IMAGE_VERSION) && \
|
||||
DOCKER_CONTENT_TRUST=1 docker push linuxkit/$(IMAGE):$(IMAGE_VERSION) && \
|
||||
docker tag $(IMAGE):build linuxkit/$(IMAGE):$(IMAGE_MAJOR_VERSION) && \
|
||||
DOCKER_CONTENT_TRUST=1 docker push linuxkit/$(IMAGE):$(IMAGE_MAJOR_VERSION))
|
||||
docker rmi $(IMAGE):build
|
||||
rm -f hash
|
||||
|
||||
tag: image
|
||||
(docker tag $(IMAGE):build linuxkit/$(IMAGE):$(IMAGE_VERSION) && \
|
||||
docker tag $(IMAGE):build linuxkit/$(IMAGE):$(IMAGE_MAJOR_VERSION))
|
||||
docker rmi $(IMAGE):build
|
||||
rm -f hash
|
||||
|
||||
.PHONY: clean
|
||||
clean:
|
||||
rm -rf x86_64 lib usr sbin kernel.tag Dockerfile.media bzImage kernel.tar
|
||||
|
||||
.DELETE_ON_ERROR:
|
||||
$(eval $(call kernel,4.10.10,4.10.x))
|
||||
$(eval $(call kernel,4.9.22,4.9.x))
|
||||
$(eval $(call kernel,4.4.61,4.4.x))
|
||||
|
@ -1,12 +1,5 @@
|
||||
Linux kernel builds, based on mostly-vanilla upstream Linux kernels.
|
||||
See [../docs/kernel-patches.md](../docs/kernel-patches.md) for how the local patches in `patches-*`
|
||||
are maintained.
|
||||
|
||||
The build is mostly silent. A local build can be run via `make`. To view
|
||||
the output use `docker log -f <containerid>`. The build creates multiple
|
||||
containers, so multiple invocations may be necessary. To view the full build
|
||||
output one may also invoke `docker build .` and then copy the build artefacts
|
||||
from the image afterwards.
|
||||
See [../docs/kernel-patches.md](../docs/kernels.md) for more
|
||||
information on kernel builds.
|
||||
|
||||
To build with various debug options enabled, build the kernel with
|
||||
`make DEBUG=1`. The options enabled are listed in `kernel_config.debug`.
|
||||
|
3742
kernel/kernel_config-4.10.x
Normal file
3742
kernel/kernel_config-4.10.x
Normal file
File diff suppressed because it is too large
Load Diff
3503
kernel/kernel_config-4.4.x
Normal file
3503
kernel/kernel_config-4.4.x
Normal file
File diff suppressed because it is too large
Load Diff
@ -53,7 +53,7 @@ CONFIG_THREAD_INFO_IN_TASK=y
|
||||
CONFIG_INIT_ENV_ARG_LIMIT=32
|
||||
CONFIG_CROSS_COMPILE=""
|
||||
# CONFIG_COMPILE_TEST is not set
|
||||
CONFIG_LOCALVERSION="-moby"
|
||||
CONFIG_LOCALVERSION="-linuxkit"
|
||||
# CONFIG_LOCALVERSION_AUTO is not set
|
||||
CONFIG_HAVE_KERNEL_GZIP=y
|
||||
CONFIG_HAVE_KERNEL_BZIP2=y
|
@ -1,2 +0,0 @@
|
||||
CONFIG_MEMCG_KMEM=y
|
||||
CONFIG_DEVPTS_MULTIPLE_INSTANCES=y
|
@ -1,7 +1,7 @@
|
||||
.PHONY: tag push
|
||||
|
||||
BASE=alpine:3.5
|
||||
IMAGE=alpine-build-kernel
|
||||
IMAGE=kernel-compile
|
||||
|
||||
default: push
|
||||
|
Loading…
Reference in New Issue
Block a user