mirror of
				https://github.com/linuxkit/linuxkit.git
				synced 2025-11-04 09:58:44 +00:00 
			
		
		
		
	This is a part revert of f49042545e ("libunwind-dev
workaround on x86 is no longer required")
Signed-off-by: Rolf Neugebauer <rn@rneugeba.io>
		
	
		
			
				
	
	
		
			219 lines
		
	
	
		
			7.6 KiB
		
	
	
	
		
			Docker
		
	
	
	
	
	
			
		
		
	
	
			219 lines
		
	
	
		
			7.6 KiB
		
	
	
	
		
			Docker
		
	
	
	
	
	
FROM linuxkit/alpine:3fdc49366257e53276c6f363956a4353f95d9a81 AS kernel-build
 | 
						|
RUN apk add \
 | 
						|
    argp-standalone \
 | 
						|
    automake \
 | 
						|
    bash \
 | 
						|
    bc \
 | 
						|
    binutils-dev \
 | 
						|
    bison \
 | 
						|
    build-base \
 | 
						|
    curl \
 | 
						|
    diffutils \
 | 
						|
    flex \
 | 
						|
    git \
 | 
						|
    gmp-dev \
 | 
						|
    gnupg \
 | 
						|
    installkernel \
 | 
						|
    kmod \
 | 
						|
    elfutils-dev \
 | 
						|
    linux-headers \
 | 
						|
    mpc1-dev \
 | 
						|
    mpfr-dev \
 | 
						|
    ncurses-dev \
 | 
						|
    openssl-dev \
 | 
						|
    patch \
 | 
						|
    rsync \
 | 
						|
    sed \
 | 
						|
    squashfs-tools \
 | 
						|
    tar \
 | 
						|
    xz \
 | 
						|
    xz-dev \
 | 
						|
    zlib-dev
 | 
						|
 | 
						|
# libunwind-dev pkg is missing for s390x for now. Only install on other arch
 | 
						|
RUN [ $(uname -m) != s390x ] && apk add libunwind-dev || true
 | 
						|
 | 
						|
ARG KERNEL_VERSION
 | 
						|
ARG KERNEL_SERIES
 | 
						|
ARG EXTRA
 | 
						|
ARG DEBUG
 | 
						|
 | 
						|
ENV WIREGUARD_VERSION=1.0.20200401
 | 
						|
ENV WIREGUARD_SHA256="7dfb4a8315e1d6ae406ff32d01c496175df558dd65968a19e5222d02c7cfb77a"
 | 
						|
ENV WIREGUARD_URL=https://git.zx2c4.com/wireguard-linux-compat/snapshot/wireguard-linux-compat-${WIREGUARD_VERSION}.tar.xz
 | 
						|
 | 
						|
# We copy the entire directory. This copies some unneeded files, but
 | 
						|
# allows us to check for the existence /patches-${KERNEL_SERIES} to
 | 
						|
# build kernels without patches.
 | 
						|
COPY / /
 | 
						|
 | 
						|
# Download and verify kernel
 | 
						|
# PGP keys: 589DA6B1 (greg@kroah.com) & 6092693E (autosigner@kernel.org) & 00411886 (torvalds@linux-foundation.org)
 | 
						|
RUN KERNEL_MAJOR=$(echo ${KERNEL_VERSION} | cut -d . -f 1) && \
 | 
						|
    KERNEL_MAJOR=v${KERNEL_MAJOR}.x && \
 | 
						|
    KERNEL_SOURCE=https://www.kernel.org/pub/linux/kernel/${KERNEL_MAJOR}/linux-${KERNEL_VERSION}.tar.xz && \
 | 
						|
    KERNEL_SHA256_SUMS=https://www.kernel.org/pub/linux/kernel/${KERNEL_MAJOR}/sha256sums.asc && \
 | 
						|
    KERNEL_PGP2_SIGN=https://www.kernel.org/pub/linux/kernel/${KERNEL_MAJOR}/linux-${KERNEL_VERSION}.tar.sign && \
 | 
						|
    curl -fsSLO ${KERNEL_SHA256_SUMS} && \
 | 
						|
    gpg2 -q --import keys.asc && \
 | 
						|
    gpg2 --verify sha256sums.asc && \
 | 
						|
    KERNEL_SHA256=$(grep linux-${KERNEL_VERSION}.tar.xz sha256sums.asc | cut -d ' ' -f 1) && \
 | 
						|
    [ -f linux-${KERNEL_VERSION}.tar.xz ] || curl -fsSLO ${KERNEL_SOURCE} && \
 | 
						|
    echo "${KERNEL_SHA256}  linux-${KERNEL_VERSION}.tar.xz" | sha256sum -c - && \
 | 
						|
    xz -d linux-${KERNEL_VERSION}.tar.xz && \
 | 
						|
    curl -fsSLO ${KERNEL_PGP2_SIGN} && \
 | 
						|
    gpg2 --verify linux-${KERNEL_VERSION}.tar.sign linux-${KERNEL_VERSION}.tar && \
 | 
						|
    cat linux-${KERNEL_VERSION}.tar | tar --absolute-names -x && mv /linux-${KERNEL_VERSION} /linux
 | 
						|
 | 
						|
 | 
						|
RUN mkdir -p /out/src
 | 
						|
 | 
						|
WORKDIR /tmp
 | 
						|
# Download Intel ucode, create a CPIO archive for it, and keep it in the build context
 | 
						|
# so the firmware can also be referenced with CONFIG_EXTRA_FIRMWARE
 | 
						|
ENV UCODE_REPO=https://github.com/intel/Intel-Linux-Processor-Microcode-Data-Files
 | 
						|
ENV UCODE_COMMIT=microcode-20191115
 | 
						|
RUN set -e && \
 | 
						|
    if [ $(uname -m) == x86_64 ]; then \
 | 
						|
        git clone ${UCODE_REPO} ucode && \
 | 
						|
        cd ucode && \
 | 
						|
        git checkout ${UCODE_COMMIT} && \
 | 
						|
        iucode_tool --normal-earlyfw --write-earlyfw=/out/intel-ucode.cpio ./intel-ucode && \
 | 
						|
        cp license /out/intel-ucode-license.txt && \
 | 
						|
        mkdir -p /lib/firmware && \
 | 
						|
        cp -rav ./intel-ucode /lib/firmware; \
 | 
						|
    fi
 | 
						|
 | 
						|
 | 
						|
WORKDIR /linux
 | 
						|
# Apply local specific patches if present
 | 
						|
RUN set -e && \
 | 
						|
    if [ -n "${EXTRA}" ] && [ -d /patches-${KERNEL_SERIES}${EXTRA} ]; then \
 | 
						|
	echo "Patching ${EXTRA} kernel"; \
 | 
						|
	for patch in /patches-${KERNEL_SERIES}${EXTRA}/*.patch; do \
 | 
						|
            echo "Applying $patch"; \
 | 
						|
            patch -t -F0 -N -u -p1 < "$patch"; \
 | 
						|
	done; \
 | 
						|
    fi
 | 
						|
 | 
						|
# Apply local common patches if present
 | 
						|
RUN set -e && \
 | 
						|
    if [ -d /patches-${KERNEL_SERIES} ]; then \
 | 
						|
        for patch in /patches-${KERNEL_SERIES}/*.patch; do \
 | 
						|
            echo "Applying $patch"; \
 | 
						|
            patch -t -F0 -N -u -p1 < "$patch"; \
 | 
						|
        done; \
 | 
						|
    fi
 | 
						|
 | 
						|
 | 
						|
 | 
						|
# Save kernel source
 | 
						|
RUN tar cJf /out/src/linux.tar.xz /linux
 | 
						|
 | 
						|
# Kernel config
 | 
						|
# The s390x defconfig moved with 5.2.x
 | 
						|
RUN case $(uname -m) in \
 | 
						|
    x86_64) \
 | 
						|
        KERNEL_DEF_CONF=/linux/arch/x86/configs/x86_64_defconfig; \
 | 
						|
        ;; \
 | 
						|
    aarch64) \
 | 
						|
        KERNEL_DEF_CONF=/linux/arch/arm64/configs/defconfig; \
 | 
						|
        ;; \
 | 
						|
    s390x) \
 | 
						|
        if [ -f /linux/arch/s390/defconfig ]; then \
 | 
						|
            KERNEL_DEF_CONF=/linux/arch/s390/defconfig; \
 | 
						|
        else \
 | 
						|
            KERNEL_DEF_CONF=/linux/arch/s390/configs/defconfig; \
 | 
						|
        fi; \
 | 
						|
        ;; \
 | 
						|
    esac  && \
 | 
						|
    cp /config-${KERNEL_SERIES}-$(uname -m) ${KERNEL_DEF_CONF}; \
 | 
						|
    if [ -n "${EXTRA}" ] && [ -f "/config-${KERNEL_SERIES}-$(uname -m)${EXTRA}" ]; then \
 | 
						|
        cat /config-${KERNEL_SERIES}-$(uname -m)${EXTRA} >> ${KERNEL_DEF_CONF}; \
 | 
						|
    fi; \
 | 
						|
    sed -i "s/CONFIG_LOCALVERSION=\"-linuxkit\"/CONFIG_LOCALVERSION=\"-linuxkit${EXTRA}${DEBUG}\"/" ${KERNEL_DEF_CONF}; \
 | 
						|
    if [ -n "${DEBUG}" ]; then \
 | 
						|
        sed -i 's/CONFIG_PANIC_ON_OOPS=y/# CONFIG_PANIC_ON_OOPS is not set/' ${KERNEL_DEF_CONF}; \
 | 
						|
        cat /config${DEBUG} >> ${KERNEL_DEF_CONF}; \
 | 
						|
    fi && \
 | 
						|
    make defconfig && \
 | 
						|
    make oldconfig && \
 | 
						|
    if [ -z "${EXTRA}" ] && [ -z "${DEBUG}" ]; then diff -u .config ${KERNEL_DEF_CONF}; fi
 | 
						|
 | 
						|
 | 
						|
# Kernel
 | 
						|
RUN case $(uname -m) in \
 | 
						|
    s390x) \
 | 
						|
        KCFLAGS="-fno-pie -fPIC"; \
 | 
						|
        ;; \
 | 
						|
    *) \
 | 
						|
        KCFLAGS="-fno-pie"; \
 | 
						|
        ;; \
 | 
						|
    esac && \
 | 
						|
    make -j "$(getconf _NPROCESSORS_ONLN)" KCFLAGS="$KCFLAGS" && \
 | 
						|
    case $(uname -m) in \
 | 
						|
    x86_64) \
 | 
						|
        cp arch/x86_64/boot/bzImage /out/kernel; \
 | 
						|
        ;; \
 | 
						|
    aarch64) \
 | 
						|
        cp arch/arm64/boot/Image.gz /out/kernel; \
 | 
						|
        ;; \
 | 
						|
    s390x) \
 | 
						|
        cp arch/s390/boot/bzImage /out/kernel; \
 | 
						|
        ;; \
 | 
						|
    esac && \
 | 
						|
    cp System.map /out && \
 | 
						|
    ([ -n "${DEBUG}" ] && cp vmlinux /out || true)
 | 
						|
 | 
						|
# WireGuard (skip kernels which have it in tree)
 | 
						|
RUN if [  ! -d /linux/drivers/net/wireguard ]; then \
 | 
						|
        curl -fsSL -o /wireguard.tar.xz "${WIREGUARD_URL}" && \
 | 
						|
        echo "${WIREGUARD_SHA256}  /wireguard.tar.xz" | sha256sum -c - && \
 | 
						|
        cp /wireguard.tar.xz /out/src/ && \
 | 
						|
        tar -C / --one-top-level=wireguard --strip-components=2 -xJf /wireguard.tar.xz "wireguard-linux-compat-${WIREGUARD_VERSION}/src" && \
 | 
						|
        make -j "$(getconf _NPROCESSORS_ONLN)" M="/wireguard" modules; \
 | 
						|
     fi
 | 
						|
 | 
						|
# Modules and Device Tree binaries
 | 
						|
RUN make INSTALL_MOD_PATH=/tmp/kernel-modules modules_install && \
 | 
						|
    make INSTALL_MOD_PATH=/tmp/kernel-modules M="/wireguard" 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 ) && \
 | 
						|
    case $(uname -m) in \
 | 
						|
    aarch64) \
 | 
						|
        make INSTALL_DTBS_PATH=/tmp/kernel-modules/boot/dtb dtbs_install; \
 | 
						|
        ;; \
 | 
						|
    esac && \
 | 
						|
    ( cd /tmp/kernel-modules && tar cf /out/kernel.tar . )
 | 
						|
 | 
						|
# Headers (userspace API)
 | 
						|
RUN mkdir -p /tmp/kernel-headers/usr && \
 | 
						|
    make INSTALL_HDR_PATH=/tmp/kernel-headers/usr headers_install && \
 | 
						|
    ( cd /tmp/kernel-headers && tar cf /out/kernel-headers.tar usr )
 | 
						|
 | 
						|
# Headers (kernel development)
 | 
						|
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 && \
 | 
						|
    cp /linux/Module.symvers $dir && \
 | 
						|
    find . -path './include/*' -prune -o \
 | 
						|
           -path './arch/*/include' -prune -o \
 | 
						|
           -path './scripts/*' -prune -o \
 | 
						|
           -type f \( -name 'Makefile*' -o -name 'Kconfig*' -o -name 'Kbuild*' -o \
 | 
						|
                      -name '*.lds' -o -name '*.pl' -o -name '*.sh' -o \
 | 
						|
                      -name 'objtool' -o -name 'fixdep' -o -name 'randomize_layout_seed.h' \) | \
 | 
						|
         tar cf - -T - | (cd $dir; tar xf -) && \
 | 
						|
    ( cd /tmp && tar cf /out/kernel-dev.tar usr/src )
 | 
						|
 | 
						|
RUN printf "KERNEL_SOURCE=${KERNEL_SOURCE}\n" > /out/kernel-source-info
 | 
						|
 | 
						|
 | 
						|
FROM scratch
 | 
						|
ENTRYPOINT []
 | 
						|
CMD []
 | 
						|
WORKDIR /
 | 
						|
COPY --from=kernel-build /out/* /
 |