initial commit

Signed-off-by: ale <ale@manalejandro.com>
Este commit está contenido en:
ale
2025-01-20 04:44:03 +01:00
commit 1601787db7
Se han modificado 3 ficheros con 11327 adiciones y 0 borrados

10
Dockerfile Archivo normal
Ver fichero

@@ -0,0 +1,10 @@
FROM debian:${DISTRIBUTION:-bookworm}
ENV VERSION=${VERSION:-6.12.10}
RUN apt update && apt install -y build-essential linux-source bc kmod cpio flex libncurses5-dev libelf-dev libssl-dev dwarves bison wget debhelper python3 && apt clean
WORKDIR /usr/src
RUN wget https://git.kernel.org/torvalds/t/linux-$VERSION.tar.gz && tar xavf /usr/src/linux-$VERSION.tar.gz && rm -f linux-$VERSION.tar.gz
WORKDIR /usr/src/linux-$VERSION
COPY ./config .config
RUN yes "" | make oldconfig
#RUN make ARCH=x86_64 defconfig
RUN make -j`nproc` bindeb-pkg