From cef3ee5299c58823f3dfcbaaba1ac70af9d2135b Mon Sep 17 00:00:00 2001 From: Justin Cormack Date: Wed, 30 Dec 2015 16:57:08 +0000 Subject: [PATCH] switch to Debian unstable for kernel compiles, prep for arm cross compile Signed-off-by: Justin Cormack --- alpine/kernel/Dockerfile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/alpine/kernel/Dockerfile b/alpine/kernel/Dockerfile index 795a3822b..45af6ac66 100644 --- a/alpine/kernel/Dockerfile +++ b/alpine/kernel/Dockerfile @@ -1,4 +1,4 @@ -FROM debian:jessie +FROM debian:unstable ENV KERNEL_VERSION 4.1.12 @@ -21,7 +21,8 @@ RUN apt-get update && apt-get -y upgrade && apt-get -y install \ git \ ncurses-dev \ p7zip-full \ - lzop + lzop \ + gcc-arm-linux-gnueabihf ADD https://www.kernel.org/pub/linux/kernel/v4.x/linux-${KERNEL_VERSION}.tar.xz . @@ -71,4 +72,3 @@ RUN git clone https://github.com/Distrotech/aufs-util.git && \ DESTDIR=/tmp/aufs-utils make install && \ rm -rf /tmp/aufs-utils/usr/lib /tmp/aufs-utils/usr/share && \ cd /tmp/aufs-utils && tar cf /aufs-utils.tar . -