Merge pull request #204 from justincormack/kernelup

update kernel to 4.4.13 and aufs to 20160613
This commit is contained in:
Justin Cormack 2016-06-13 15:14:20 +01:00 committed by GitHub
commit 4babbfb749

View File

@ -1,6 +1,6 @@
FROM ubuntu:15.10 FROM ubuntu:15.10
ARG KERNEL_VERSION=4.4.12 ARG KERNEL_VERSION=4.4.13
ARG ARCH=x86_64 ARG ARCH=x86_64
ENV KERNEL_SOURCE=https://www.kernel.org/pub/linux/kernel/v4.x/linux-${KERNEL_VERSION}.tar.xz ENV KERNEL_SOURCE=https://www.kernel.org/pub/linux/kernel/v4.x/linux-${KERNEL_VERSION}.tar.xz
@ -32,10 +32,10 @@ RUN wget ${KERNEL_SOURCE}
RUN cat linux-${KERNEL_VERSION}.tar.xz | tar --absolute-names -xJ && mv /linux-${KERNEL_VERSION} /linux RUN cat linux-${KERNEL_VERSION}.tar.xz | tar --absolute-names -xJ && mv /linux-${KERNEL_VERSION} /linux
# this is aufs4.4 20160530 # this is aufs4.4 20160613
ENV AUFS_REPO https://github.com/sfjro/aufs4-standalone ENV AUFS_REPO https://github.com/sfjro/aufs4-standalone
ENV AUFS_BRANCH aufs4.4 ENV AUFS_BRANCH aufs4.4
ENV AUFS_COMMIT 9db361ef1d39326d985d9c55871a4f6348aff9d3 ENV AUFS_COMMIT 12387bde8dd9a74508636601bfd5b2a576932174
# Download AUFS and patch kernel # Download AUFS and patch kernel
RUN git clone -b "$AUFS_BRANCH" "$AUFS_REPO" /aufs && \ RUN git clone -b "$AUFS_BRANCH" "$AUFS_REPO" /aufs && \