summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDenis 'GNUtoo' Carikli <GNUtoo@cyberdimension.org>2022-02-16 19:33:07 +0100
committerDenis 'GNUtoo' Carikli <GNUtoo@cyberdimension.org>2022-02-16 19:33:53 +0100
commit8833be159bfff1c417a7459dec323384bcbcb4d0 (patch)
tree2edd48f32872f646d2d783816bb479db84e3614f
parent425162db93c50033df08ada44f3a08142bf1ed12 (diff)
scripts: download: u-boot: fix u-boot repository URL
Without that fix we have the following warning during the download: Cloning into 'u-boot/u-boot'... warning: redirecting to https://source.denx.de/u-boot/u-boot.git/ Signed-off-by: Denis 'GNUtoo' Carikli <GNUtoo@cyberdimension.org>
-rwxr-xr-xresources/scripts/download/u-boot2
1 files changed, 1 insertions, 1 deletions
diff --git a/resources/scripts/download/u-boot b/resources/scripts/download/u-boot
index 8c94d338..bd0258c0 100755
--- a/resources/scripts/download/u-boot
+++ b/resources/scripts/download/u-boot
@@ -65,7 +65,7 @@ downloadfor() {
if [ ! -d "${uboot_dir}" ]; then
printf "Download u-boot from upstream:\n"
- git clone https://source.denx.de/u-boot/u-boot \
+ git clone https://source.denx.de/u-boot/u-boot.git \
"${uboot_dir}" || \
rm -Rf "${uboot_dir}"
if [ ! -d "${uboot_dir}" ]; then