diff options
author | Yi Zhao <yi.zhao@windriver.com> | 2024-09-15 20:51:53 +0800 |
---|---|---|
committer | Khem Raj <raj.khem@gmail.com> | 2024-09-15 07:46:44 -0700 |
commit | 77b5f1a09694b15aa5c729f078d50a5c4c0a78b2 (patch) | |
tree | 78138f3a9dcff0037412b6bab6bbaf41e2d0465d /meta-oe | |
parent | f556659ec36275eca15bf4999e5daa7c5a44452e (diff) | |
download | meta-openembedded-77b5f1a09694b15aa5c729f078d50a5c4c0a78b2.tar.gz |
debootstrap: upgrade 1.0.132 -> 1.0.137
ChangeLog:
https://salsa.debian.org/installer-team/debootstrap/-/blob/1.0.137/debian/changelog
Signed-off-by: Yi Zhao <yi.zhao@windriver.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
Diffstat (limited to 'meta-oe')
-rw-r--r-- | meta-oe/recipes-devtools/debootstrap/debootstrap/0001-support-to-override-usr-sbin-and-usr-share.patch | 18 | ||||
-rw-r--r-- | meta-oe/recipes-devtools/debootstrap/debootstrap/0002-support-to-override-usr-bin-arch-test.patch | 12 | ||||
-rw-r--r-- | meta-oe/recipes-devtools/debootstrap/debootstrap/0003-do-not-hardcode-the-full-path-of-dpkg.patch (renamed from meta-oe/recipes-devtools/debootstrap/debootstrap/0001-do-not-hardcode-the-full-path-of-dpkg.patch) | 8 | ||||
-rw-r--r-- | meta-oe/recipes-devtools/debootstrap/debootstrap_1.0.137.bb (renamed from meta-oe/recipes-devtools/debootstrap/debootstrap_1.0.132.bb) | 6 |
4 files changed, 21 insertions, 23 deletions
diff --git a/meta-oe/recipes-devtools/debootstrap/debootstrap/0001-support-to-override-usr-sbin-and-usr-share.patch b/meta-oe/recipes-devtools/debootstrap/debootstrap/0001-support-to-override-usr-sbin-and-usr-share.patch index 12dd238108..faa66e0268 100644 --- a/meta-oe/recipes-devtools/debootstrap/debootstrap/0001-support-to-override-usr-sbin-and-usr-share.patch +++ b/meta-oe/recipes-devtools/debootstrap/debootstrap/0001-support-to-override-usr-sbin-and-usr-share.patch | |||
@@ -1,20 +1,20 @@ | |||
1 | From 87d0174e8d56e7458dc94f05f82ab7a67a5cf7d0 Mon Sep 17 00:00:00 2001 | 1 | From 6c8b0a3f9c09a7a135d95ff18038bcba22e87b86 Mon Sep 17 00:00:00 2001 |
2 | From: Hongxu Jia <hongxu.jia@windriver.com> | 2 | From: Hongxu Jia <hongxu.jia@windriver.com> |
3 | Date: Thu, 8 Apr 2021 14:06:05 +0800 | 3 | Date: Thu, 8 Apr 2021 14:06:05 +0800 |
4 | Subject: [PATCH 1/2] support to override /usr/sbin and /usr/share | 4 | Subject: [PATCH] support to override /usr/sbin and /usr/share |
5 | 5 | ||
6 | Upstream-Status: Submitted [https://salsa.debian.org/installer-team/debootstrap/-/merge_requests/55] | 6 | Upstream-Status: Submitted [https://salsa.debian.org/installer-team/debootstrap/-/merge_requests/55] |
7 | 7 | ||
8 | Signed-off-by: Hongxu Jia <hongxu.jia@windriver.com> | 8 | Signed-off-by: Hongxu Jia <hongxu.jia@windriver.com> |
9 | --- | 9 | --- |
10 | Makefile | 12 +++++++----- | 10 | Makefile | 10 ++++++---- |
11 | 1 file changed, 7 insertions(+), 5 deletions(-) | 11 | 1 file changed, 6 insertions(+), 4 deletions(-) |
12 | 12 | ||
13 | diff --git a/Makefile b/Makefile | 13 | diff --git a/Makefile b/Makefile |
14 | index 8516803..a2d8c00 100644 | 14 | index 21a9a39..649f465 100644 |
15 | --- a/Makefile | 15 | --- a/Makefile |
16 | +++ b/Makefile | 16 | +++ b/Makefile |
17 | @@ -5,14 +5,16 @@ all: | 17 | @@ -5,13 +5,15 @@ all: |
18 | 18 | ||
19 | clean: | 19 | clean: |
20 | 20 | ||
@@ -28,14 +28,12 @@ index 8516803..a2d8c00 100644 | |||
28 | + mkdir -p $(DESTDIR)$(sbindir) | 28 | + mkdir -p $(DESTDIR)$(sbindir) |
29 | 29 | ||
30 | cp -a scripts/* $(DSDIR)/scripts/ | 30 | cp -a scripts/* $(DSDIR)/scripts/ |
31 | install -o root -g root -m 0644 functions $(DSDIR)/ | 31 | install -m 0644 functions $(DSDIR)/ |
32 | 32 | ||
33 | - sed 's/@VERSION@/$(VERSION)/g' debootstrap >$(DESTDIR)/usr/sbin/debootstrap | 33 | - sed 's/@VERSION@/$(VERSION)/g' debootstrap >$(DESTDIR)/usr/sbin/debootstrap |
34 | - chown root:root $(DESTDIR)/usr/sbin/debootstrap | ||
35 | - chmod 0755 $(DESTDIR)/usr/sbin/debootstrap | 34 | - chmod 0755 $(DESTDIR)/usr/sbin/debootstrap |
36 | + sed 's/@VERSION@/$(VERSION)/g' debootstrap >$(DESTDIR)$(sbindir)/debootstrap | 35 | + sed 's/@VERSION@/$(VERSION)/g' debootstrap >$(DESTDIR)$(sbindir)/debootstrap |
37 | + chown root:root $(DESTDIR)$(sbindir)/debootstrap | ||
38 | + chmod 0755 $(DESTDIR)$(sbindir)/debootstrap | 36 | + chmod 0755 $(DESTDIR)$(sbindir)/debootstrap |
39 | -- | 37 | -- |
40 | 2.17.1 | 38 | 2.25.1 |
41 | 39 | ||
diff --git a/meta-oe/recipes-devtools/debootstrap/debootstrap/0002-support-to-override-usr-bin-arch-test.patch b/meta-oe/recipes-devtools/debootstrap/debootstrap/0002-support-to-override-usr-bin-arch-test.patch index 69329df4ea..5de65779d4 100644 --- a/meta-oe/recipes-devtools/debootstrap/debootstrap/0002-support-to-override-usr-bin-arch-test.patch +++ b/meta-oe/recipes-devtools/debootstrap/debootstrap/0002-support-to-override-usr-bin-arch-test.patch | |||
@@ -1,7 +1,7 @@ | |||
1 | From f0420b201f2fb5286ccf5657faa6b38cd2680e10 Mon Sep 17 00:00:00 2001 | 1 | From 3fee46c7e50f432fbd5c97c60b918d71c91f1adc Mon Sep 17 00:00:00 2001 |
2 | From: Hongxu Jia <hongxu.jia@windriver.com> | 2 | From: Hongxu Jia <hongxu.jia@windriver.com> |
3 | Date: Thu, 8 Apr 2021 14:08:06 +0800 | 3 | Date: Thu, 8 Apr 2021 14:08:06 +0800 |
4 | Subject: [PATCH 2/2] support to override /usr/bin/arch-test | 4 | Subject: [PATCH] support to override /usr/bin/arch-test |
5 | 5 | ||
6 | Upstream-Status: Submitted [https://salsa.debian.org/installer-team/debootstrap/-/merge_requests/55] | 6 | Upstream-Status: Submitted [https://salsa.debian.org/installer-team/debootstrap/-/merge_requests/55] |
7 | 7 | ||
@@ -11,12 +11,12 @@ Signed-off-by: Hongxu Jia <hongxu.jia@windriver.com> | |||
11 | 1 file changed, 8 insertions(+), 4 deletions(-) | 11 | 1 file changed, 8 insertions(+), 4 deletions(-) |
12 | 12 | ||
13 | diff --git a/debootstrap b/debootstrap | 13 | diff --git a/debootstrap b/debootstrap |
14 | index 9b9e58d..a3cf3af 100755 | 14 | index 552c8d6..11a9465 100755 |
15 | --- a/debootstrap | 15 | --- a/debootstrap |
16 | +++ b/debootstrap | 16 | +++ b/debootstrap |
17 | @@ -51,6 +51,10 @@ INRELEASE_PATH="" | 17 | @@ -51,6 +51,10 @@ INRELEASE_PATH="" |
18 | |||
18 | DEF_MIRROR="http://deb.debian.org/debian" | 19 | DEF_MIRROR="http://deb.debian.org/debian" |
19 | DEF_HTTPS_MIRROR="https://deb.debian.org/debian" | ||
20 | 20 | ||
21 | +if [ -z "$ARCH_TEST" ]; then | 21 | +if [ -z "$ARCH_TEST" ]; then |
22 | + ARCH_TEST="/usr/bin/arch-test" | 22 | + ARCH_TEST="/usr/bin/arch-test" |
@@ -25,7 +25,7 @@ index 9b9e58d..a3cf3af 100755 | |||
25 | # set $CONTAINER | 25 | # set $CONTAINER |
26 | detect_container | 26 | detect_container |
27 | 27 | ||
28 | @@ -645,12 +649,12 @@ fi | 28 | @@ -661,12 +665,12 @@ fi |
29 | 29 | ||
30 | ########################################################################### | 30 | ########################################################################### |
31 | 31 | ||
@@ -43,5 +43,5 @@ index 9b9e58d..a3cf3af 100755 | |||
43 | ret=3 | 43 | ret=3 |
44 | fi | 44 | fi |
45 | -- | 45 | -- |
46 | 2.17.1 | 46 | 2.25.1 |
47 | 47 | ||
diff --git a/meta-oe/recipes-devtools/debootstrap/debootstrap/0001-do-not-hardcode-the-full-path-of-dpkg.patch b/meta-oe/recipes-devtools/debootstrap/debootstrap/0003-do-not-hardcode-the-full-path-of-dpkg.patch index 2a5f233165..5cd1ce88af 100644 --- a/meta-oe/recipes-devtools/debootstrap/debootstrap/0001-do-not-hardcode-the-full-path-of-dpkg.patch +++ b/meta-oe/recipes-devtools/debootstrap/debootstrap/0003-do-not-hardcode-the-full-path-of-dpkg.patch | |||
@@ -1,4 +1,4 @@ | |||
1 | From e735fb23f46f0c3c7a1144ba6b4050bfc0015a05 Mon Sep 17 00:00:00 2001 | 1 | From e92554e57b4aae242cb0416025883ccc2c539d2a Mon Sep 17 00:00:00 2001 |
2 | From: Hongxu Jia <hongxu.jia@windriver.com> | 2 | From: Hongxu Jia <hongxu.jia@windriver.com> |
3 | Date: Wed, 2 Jun 2021 13:34:35 +0800 | 3 | Date: Wed, 2 Jun 2021 13:34:35 +0800 |
4 | Subject: [PATCH] do not hardcode the full path of dpkg | 4 | Subject: [PATCH] do not hardcode the full path of dpkg |
@@ -16,10 +16,10 @@ Signed-off-by: Hongxu Jia <hongxu.jia@windriver.com> | |||
16 | 1 file changed, 1 insertion(+), 1 deletion(-) | 16 | 1 file changed, 1 insertion(+), 1 deletion(-) |
17 | 17 | ||
18 | diff --git a/debootstrap b/debootstrap | 18 | diff --git a/debootstrap b/debootstrap |
19 | index a3cf3af..5e96c3e 100755 | 19 | index 11a9465..17ab05a 100755 |
20 | --- a/debootstrap | 20 | --- a/debootstrap |
21 | +++ b/debootstrap | 21 | +++ b/debootstrap |
22 | @@ -538,7 +538,7 @@ fi | 22 | @@ -551,7 +551,7 @@ fi |
23 | 23 | ||
24 | if in_path dpkg && \ | 24 | if in_path dpkg && \ |
25 | dpkg --print-architecture >/dev/null 2>&1; then | 25 | dpkg --print-architecture >/dev/null 2>&1; then |
@@ -29,5 +29,5 @@ index a3cf3af..5e96c3e 100755 | |||
29 | udpkg --print-architecture >/dev/null 2>&1; then | 29 | udpkg --print-architecture >/dev/null 2>&1; then |
30 | HOST_ARCH=$(/usr/bin/udpkg --print-architecture) | 30 | HOST_ARCH=$(/usr/bin/udpkg --print-architecture) |
31 | -- | 31 | -- |
32 | 2.27.0 | 32 | 2.25.1 |
33 | 33 | ||
diff --git a/meta-oe/recipes-devtools/debootstrap/debootstrap_1.0.132.bb b/meta-oe/recipes-devtools/debootstrap/debootstrap_1.0.137.bb index c28a51749c..d4783b3549 100644 --- a/meta-oe/recipes-devtools/debootstrap/debootstrap_1.0.132.bb +++ b/meta-oe/recipes-devtools/debootstrap/debootstrap_1.0.137.bb | |||
@@ -2,16 +2,16 @@ SUMMARY = "Install a Debian system into a subdirectory" | |||
2 | HOMEPAGE = "https://wiki.debian.org/Debootstrap" | 2 | HOMEPAGE = "https://wiki.debian.org/Debootstrap" |
3 | SECTION = "devel" | 3 | SECTION = "devel" |
4 | LICENSE = "MIT" | 4 | LICENSE = "MIT" |
5 | LIC_FILES_CHKSUM = "file://debian/copyright;md5=1e68ced6e1689d4cd9dac75ff5225608" | 5 | LIC_FILES_CHKSUM = "file://debian/copyright;md5=e7b45429ef05610abf91ac199fdb3a6e" |
6 | 6 | ||
7 | SRC_URI = "\ | 7 | SRC_URI = "\ |
8 | ${DEBIAN_MIRROR}/main/d/debootstrap/debootstrap_${PV}.tar.gz \ | 8 | ${DEBIAN_MIRROR}/main/d/debootstrap/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://0003-do-not-hardcode-the-full-path-of-dpkg.patch \ |
12 | " | 12 | " |
13 | 13 | ||
14 | SRC_URI[sha256sum] = "d963a465314ac0e8fd5392573def042e6663e8edf3d08ace4bbd0d27ee8431f7" | 14 | SRC_URI[sha256sum] = "666927457ee4b0b3e68e55a0efbf3fb69189610b7abbd534017d7032cb3ae833" |
15 | 15 | ||
16 | S = "${WORKDIR}/debootstrap" | 16 | S = "${WORKDIR}/debootstrap" |
17 | 17 | ||