stagex/packages/linux-generic/Containerfile

59 lines
1.5 KiB
Text
Raw Normal View History

2024-02-10 11:43:02 +00:00
FROM scratch as base
ENV VERSION=6.6
ENV SRC_HASH=d926a06c63dd8ac7df3f86ee1ffc2ce2a3b81a2d168484e76b5b389aba8e56d0
ENV SRC_FILE=linux-${VERSION}.tar.xz
ENV SRC_SITE=http://mirrors.edge.kernel.org/pub/linux/kernel/v6.x/${SRC_FILE}
2024-02-02 21:38:33 +00:00
FROM base as fetch
ADD --checksum=sha256:${SRC_HASH} ${SRC_SITE} .
2024-02-02 21:38:33 +00:00
FROM fetch as build
COPY --from=stagex/musl . /
COPY --from=stagex/make . /
COPY --from=stagex/binutils . /
COPY --from=stagex/linux-headers . /
COPY --from=stagex/elfutils . /
COPY --from=stagex/openssl . /
COPY --from=stagex/perl . /
COPY --from=stagex/m4 . /
COPY --from=stagex/gcc . /
COPY --from=stagex/bison . /
COPY --from=stagex/libzstd . /
COPY --from=stagex/zlib . /
COPY --from=stagex/flex . /
COPY --from=stagex/pkgconf . /
COPY --from=stagex/coreutils . /
COPY --from=stagex/findutils . /
COPY --from=stagex/diffutils . /
COPY --from=stagex/tar . /
COPY --from=stagex/gzip . /
COPY --from=stagex/xz . /
COPY --from=stagex/sed . /
COPY --from=stagex/grep . /
COPY --from=stagex/gawk . /
COPY --from=stagex/bc . /
COPY --from=stagex/bash . /
COPY --from=stagex/bash /bin/bash /bin/sh
2024-02-10 11:43:02 +00:00
RUN tar -xf ${SRC_FILE}
WORKDIR linux-${VERSION}
RUN <<-EOF
2024-02-10 11:43:02 +00:00
set -eux
make oldconfig
make bzImage
make modules INSTALL_MOD_PATH=/rootfs
EOF
2024-02-02 21:38:33 +00:00
2024-02-05 10:42:27 +00:00
FROM build as install
RUN <<-EOF
2024-02-10 11:43:02 +00:00
set -eux
mkdir -p /rootfs/usr/lib/modules
make INSTALL_MOD_PATH=/rootfs/usr modules_install
cp .config /rootfs/linux.config
cp arch/x86_64/boot/bzImage /rootfs
EOF
RUN find /rootfs -exec touch -hcd "@0" "{}" +
2024-02-02 21:38:33 +00:00
FROM stagex/filesystem as package
COPY --from=install /rootfs/. /