Skip to content

Commit

Permalink
Merge pull request #8 from argent-smith/4.19-nokvm
Browse files Browse the repository at this point in the history
Toolbelt and kernel version updates
  • Loading branch information
DieterReuter authored Apr 6, 2019
2 parents 0b5b450 + 7189952 commit 74d627b
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,21 +1,21 @@
FROM debian:jessie
FROM debian:stretch

WORKDIR /workdir
ENV LINUX=/workdir/rpi64-linux \
RPI_KERNEL_REPO=https://www.github.com/raspberrypi/linux \
RPI_KERNEL_BRANCH=rpi-4.14.y \
RPI_KERNEL_BRANCH=rpi-4.19.y \
TIMESTAMP_OUTPUT=true

# Install build dependencies
RUN apt-get update && \
apt-get install -y bc build-essential curl git-core libncurses5-dev module-init-tools
apt-get install -y bc build-essential curl git-core libncurses5-dev kmod flex bison libssl-dev

# Install crosscompile toolchain for ARM64/aarch64
RUN mkdir -p /opt/linaro && \
curl -sSL http://releases.linaro.org/components/toolchain/binaries/7.1-2017.08/aarch64-linux-gnu/gcc-linaro-7.1.1-2017.08-x86_64_aarch64-linux-gnu.tar.xz | tar xfJ - -C /opt/linaro
ENV CROSS_COMPILE=/opt/linaro/gcc-linaro-7.1.1-2017.08-x86_64_aarch64-linux-gnu/bin/aarch64-linux-gnu-
curl -sSL https://releases.linaro.org/components/toolchain/binaries/latest-7/aarch64-linux-gnu/gcc-linaro-7.4.1-2019.02-x86_64_aarch64-linux-gnu.tar.xz | tar xfJ - -C /opt/linaro
ENV CROSS_COMPILE=/opt/linaro/gcc-linaro-7.4.1-2019.02-x86_64_aarch64-linux-gnu/bin/aarch64-linux-gnu-

# Get the Linux kernel 4.14 source
# Get the Linux kernel 4.19 source
RUN git clone --single-branch --branch $RPI_KERNEL_BRANCH --depth 1 $RPI_KERNEL_REPO $LINUX

COPY defconfigs/ /defconfigs/
Expand Down

0 comments on commit 74d627b

Please sign in to comment.