4
0
Fork 0

updated uboot to version 2020.01

This commit is contained in:
Benjamin Böhmke 2020-01-23 19:18:24 +01:00
parent b5bbe7c5b4
commit 69a32746d0
1 changed files with 5 additions and 3 deletions

View File

@ -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 && \