From 69a32746d0b972fb21ed087bfe5c5c82c194b14b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Benjamin=20B=C3=B6hmke?= Date: Thu, 23 Jan 2020 19:18:24 +0100 Subject: [PATCH] updated uboot to version 2020.01 --- Dockerfile | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/Dockerfile b/Dockerfile index 6427c88..5c5e566 100644 --- a/Dockerfile +++ b/Dockerfile @@ -10,10 +10,12 @@ RUN mkdir /uboot_build/ && \ WORKDIR /uboot_build/ -RUN wget ftp://ftp.denx.de/pub/u-boot/u-boot-2019.10.tar.bz2 && \ - tar -xjf u-boot-2019.10.tar.bz2 +ENV UBOOT_VERSION=2020.01 -WORKDIR /uboot_build/u-boot-2019.10/ +RUN wget http://ftp.denx.de/pub/u-boot/u-boot-${UBOOT_VERSION}.tar.bz2 && \ + tar -xjf u-boot-${UBOOT_VERSION}.tar.bz2 + +WORKDIR /uboot_build/u-boot-${UBOOT_VERSION}/ # model a/b/zero RUN make CROSS_COMPILE=arm-linux-gnueabi- distclean && \