diff options
| author | Tom Rini <[email protected]> | 2023-02-27 10:49:54 -0500 |
|---|---|---|
| committer | Tom Rini <[email protected]> | 2023-02-27 17:18:51 -0500 |
| commit | 7a826ded4a0e409d73ff4a910685821d34f1b664 (patch) | |
| tree | f8f6279c53c9c686849e0d38975f1267d7466a17 /tools/docker | |
| parent | fffc18d178c44b2b20acac189491c5c3e33ec19f (diff) | |
Dockerfile: Add missing "chmod" of u-boot-gen-combined
I had added this line locally, rebuild the image, but didn't ensure that
I had committed the correct version of the patch as well.
Fixes: 75b031ee4a96 ("Dockerfile: download binaries for Nokia RX-51")
Signed-off-by: Tom Rini <[email protected]>
Diffstat (limited to 'tools/docker')
| -rw-r--r-- | tools/docker/Dockerfile | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/tools/docker/Dockerfile b/tools/docker/Dockerfile index c367bb482b4..fdcb0c7f3d2 100644 --- a/tools/docker/Dockerfile +++ b/tools/docker/Dockerfile @@ -254,6 +254,7 @@ RUN mkdir /tmp/trace && \ RUN mkdir -p /opt/nokia && \ cd /opt/nokia && \ wget https://raw.githubusercontent.com/pali/u-boot-maemo/master/debian/u-boot-gen-combined && \ + chmod 0755 u-boot-gen-combined && \ wget http://repository.maemo.org/qemu-n900/qemu-n900.tar.gz && \ wget http://repository.maemo.org/pool/maemo5.0/free/k/kernel/kernel_2.6.28-20103103+0m5_armel.deb && \ wget http://repository.maemo.org/pool/maemo5.0/free/g/glibc/libc6_2.5.1-1eglibc27+0m5_armel.deb && \ |
