git.openpandora.org
/
pandora-u-boot.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
3e73373
)
Dockerfile: Add missing 'rm -rf /tmp/coreboot-24.08'
author
Tom Rini
<trini@konsulko.com>
Wed, 12 Feb 2025 22:24:15 +0000
(16:24 -0600)
committer
Tom Rini
<trini@konsulko.com>
Thu, 13 Mar 2025 20:21:09 +0000
(14:21 -0600)
We had missed removing the coreboot directory once done, fix this.
Signed-off-by: Tom Rini <trini@konsulko.com>
tools/docker/Dockerfile
patch
|
blob
|
history
diff --git
a/tools/docker/Dockerfile
b/tools/docker/Dockerfile
index
85d6784
..
5699123
100644
(file)
--- a/
tools/docker/Dockerfile
+++ b/
tools/docker/Dockerfile
@@
-296,7
+296,8
@@
RUN wget -O - https://coreboot.org/releases/coreboot-24.08.tar.xz | tar -C /tmp
make olddefconfig && \
make -j $(nproc) && \
sudo mkdir /opt/coreboot && \
- sudo cp build/coreboot.rom build/cbfstool /opt/coreboot/
+ sudo cp build/coreboot.rom build/cbfstool /opt/coreboot/ && \
+ rm -rf /tmp/coreboot-24.08
# Create our user/group
RUN echo uboot ALL=NOPASSWD: ALL > /etc/sudoers.d/uboot