summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJiaying Song <jiaying.song.cn@windriver.com>2024-10-18 16:09:10 +0800
committerArmin Kuster <akuster808@gmail.com>2024-10-27 16:01:15 -0400
commit358c34107d5730cc5119286645838c02bf36eee3 (patch)
tree51c0e59bfa6bf56e500b0e5ac2d1350a0e537142
parent2e3126c9c16bb3df0560f6b3896d01539a3bfad7 (diff)
downloadmeta-openembedded-358c34107d5730cc5119286645838c02bf36eee3.tar.gz
debootstrap: fix do_fetch error
Change the SRC_URI to the correct value due to the following error: WARNING: debootstrap-1.0.132-r0.vr2401 do_fetch: Failed to fetch URL http://ftp.debian.org/debian/pool/main/d/debootstrap/debootstrap_1.0.132.tar.gz, attempting MIRRORS if available Signed-off-by: Jiaying Song <jiaying.song.cn@windriver.com> Signed-off-by: Armin Kuster <akuster808@gmail.com>
-rw-r--r--meta-oe/recipes-devtools/debootstrap/debootstrap_1.0.132.bb2
1 files changed, 1 insertions, 1 deletions
diff --git a/meta-oe/recipes-devtools/debootstrap/debootstrap_1.0.132.bb b/meta-oe/recipes-devtools/debootstrap/debootstrap_1.0.132.bb
index c28a51749c..94c112d395 100644
--- a/meta-oe/recipes-devtools/debootstrap/debootstrap_1.0.132.bb
+++ b/meta-oe/recipes-devtools/debootstrap/debootstrap_1.0.132.bb
@@ -5,7 +5,7 @@ LICENSE = "MIT"
5LIC_FILES_CHKSUM = "file://debian/copyright;md5=1e68ced6e1689d4cd9dac75ff5225608" 5LIC_FILES_CHKSUM = "file://debian/copyright;md5=1e68ced6e1689d4cd9dac75ff5225608"
6 6
7SRC_URI = "\ 7SRC_URI = "\
8 ${DEBIAN_MIRROR}/main/d/debootstrap/debootstrap_${PV}.tar.gz \ 8 https://salsa.debian.org/installer-team/debootstrap/-/archive/${PV}/debootstrap_${PV}.tar.gz \
9 file://0001-support-to-override-usr-sbin-and-usr-share.patch \ 9 file://0001-support-to-override-usr-sbin-and-usr-share.patch \
10 file://0002-support-to-override-usr-bin-arch-test.patch \ 10 file://0002-support-to-override-usr-bin-arch-test.patch \
11 file://0001-do-not-hardcode-the-full-path-of-dpkg.patch \ 11 file://0001-do-not-hardcode-the-full-path-of-dpkg.patch \