8000 Update to Linux 4.14.46 by tianon · Pull Request #1322 · boot2docker/boot2docker · GitHub
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content
This repository was archived by the owner on Jan 1, 2021. It is now read-only.

Update to Linux 4.14.46 #1322

Closed
wants to merge 1 commit into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 5 additions & 4 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ RUN set -eux; \
golang \
isolinux \
kmod \
libelf-dev \
p7zip-full \
pkg-config \
squashfs-tools \
Expand All @@ -25,16 +26,16 @@ RUN set -eux; \
rm -rf /var/lib/apt/lists/*

# https://www.kernel.org/
ENV KERNEL_VERSION 4.9.93
ENV KERNEL_VERSION 4.14.46

# Fetch the kernel sources
RUN curl --retry 10 https://cdn.kernel.org/pub/linux/kernel/v${KERNEL_VERSION%%.*}.x/linux-$KERNEL_VERSION.tar.xz | tar -C / -xJ && \
mv /linux-$KERNEL_VERSION /linux-kernel

# http://aufs.sourceforge.net/
ENV AUFS_REPO https://github.com/sfjro/aufs4-standalone
ENV AUFS_BRANCH aufs4.9
ENV AUFS_COMMIT b5eed3ecdd1deaacd0bce1d3a524b1542407c40d
ENV AUFS_BRANCH aufs4.14
ENV AUFS_COMMIT b6d4fac971fb30f8f1cc8e5bc350c895ff127003
# we use AUFS_COMMIT to get stronger repeatability guarantees

# Download AUFS and apply patches and files, then remove it
Expand Down Expand Up @@ -75,7 +76,7 @@ RUN mkdir -p /tmp/iso/boot

# Install the kernel modules in $ROOTFS
RUN cd /linux-kernel && \
make INSTALL_MOD_PATH=$ROOTFS modules_install firmware_install
make INSTALL_MOD_PATH=$ROOTFS modules_install

# Remove useless kernel modules, based on unclejack/debian2docker
RUN cd $ROOTFS/lib/modules && \
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ Boot2Docker is officialy in **maintenance mode** -- it is recommended that users

## Features

* Kernel 4.9.93 (with AUFS), Docker v18.05.0-ce
* Kernel 4.14.46 (with AUFS), Docker v18.05.0-ce
* VM guest additions (VirtualBox, Parallels, VMware, XenServer)
* Container persistence via disk automount on `/var/lib/docker`
* SSH keys persistence via disk automount
Expand Down
Loading
0