Builder for 3.0.101

This commit is contained in:
Vadim Vetrov 2025-01-12 03:34:33 +03:00
parent 452e640d9f
commit f68f1ff6c7
No known key found for this signature in database
GPG Key ID: E8A308689D7A73A5

View File

@ -0,0 +1,12 @@
FROM ubuntu:14.04
RUN apt update && apt install -y build-essential flex bc bison libelf-dev elfutils libssl-dev wget
RUN wget https://cdn.kernel.org/pub/linux/kernel/v3.x/linux-3.0.101.tar.xz -O kernel.tar.xz
RUN tar -xf kernel.tar.xz
RUN rm -f kernel.tar.xz
RUN /bin/bash -c "mv linux-* linux"
WORKDIR /linux
RUN make defconfig
RUN make -j$(nproc)