mirror of
https://github.com/openembedded/meta-openembedded.git
synced 2026-07-16 04:17:25 +00:00
358c34107d
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>
28 lines
845 B
BlitzBasic
28 lines
845 B
BlitzBasic
SUMMARY = "Install a Debian system into a subdirectory"
|
|
HOMEPAGE = "https://wiki.debian.org/Debootstrap"
|
|
SECTION = "devel"
|
|
LICENSE = "MIT"
|
|
LIC_FILES_CHKSUM = "file://debian/copyright;md5=1e68ced6e1689d4cd9dac75ff5225608"
|
|
|
|
SRC_URI = "\
|
|
https://salsa.debian.org/installer-team/debootstrap/-/archive/${PV}/debootstrap_${PV}.tar.gz \
|
|
file://0001-support-to-override-usr-sbin-and-usr-share.patch \
|
|
file://0002-support-to-override-usr-bin-arch-test.patch \
|
|
file://0001-do-not-hardcode-the-full-path-of-dpkg.patch \
|
|
"
|
|
|
|
SRC_URI[sha256sum] = "d963a465314ac0e8fd5392573def042e6663e8edf3d08ace4bbd0d27ee8431f7"
|
|
|
|
S = "${WORKDIR}/debootstrap"
|
|
|
|
DEPENDS = " \
|
|
virtual/fakeroot-native \
|
|
"
|
|
|
|
fakeroot do_install() {
|
|
oe_runmake 'DESTDIR=${D}' install
|
|
chown -R root:root ${D}${datadir}/debootstrap
|
|
}
|
|
|
|
BBCLASSEXTEND = "native nativesdk"
|