From: Tom Rini <trini@konsulko.com>
Date: Fri, 7 Jul 2023 22:04:30 +0000 (-0400)
Subject: tools/docker: Dockerfile: Don't specify dtc submodule
X-Git-Tag: v2025.01-rc5-pxa1908~933^2~7
X-Git-Url: http://git.dujemihanovic.xyz/img/static/login.html?a=commitdiff_plain;h=9b9628b60e2012f2e0c40285d5e1c7a9a2fc3b37;p=u-boot.git

tools/docker: Dockerfile: Don't specify dtc submodule

When building qemu, all required submodules (of which we need more than
just dtc) are handled automatically. Currently trying to init the
submodule the way we do results in a git failure.

Reported-by: Alexey Brodkin <Alexey.Brodkin@synopsys.com>
Signed-off-by: Tom Rini <trini@konsulko.com>
Reviewed-by: Simon Glass <sjg@chromium.org>
---

diff --git a/tools/docker/Dockerfile b/tools/docker/Dockerfile
index 9804b55ddd..aa54e2689f 100644
--- a/tools/docker/Dockerfile
+++ b/tools/docker/Dockerfile
@@ -175,7 +175,6 @@ RUN git clone git://git.savannah.gnu.org/grub.git /tmp/grub && \
 
 RUN git clone https://gitlab.com/qemu-project/qemu.git /tmp/qemu && \
 	cd /tmp/qemu && \
-	git submodule update --init dtc && \
 	git checkout v6.1.0 && \
 	# config user.name and user.email to make 'git am' happy
 	git config user.name u-boot && \