summaryrefslogtreecommitdiffstats
path: root/meta/recipes-devtools/dpkg/dpkg
diff options
context:
space:
mode:
Diffstat (limited to 'meta/recipes-devtools/dpkg/dpkg')
-rw-r--r--meta/recipes-devtools/dpkg/dpkg/Add-support-for-mipsn32-el-and-mips64-el-to-arch-tab.patch78
-rw-r--r--meta/recipes-devtools/dpkg/dpkg/preinst.patch30
-rw-r--r--meta/recipes-devtools/dpkg/dpkg/remove-tar-no-timestamp.patch21
3 files changed, 25 insertions, 104 deletions
diff --git a/meta/recipes-devtools/dpkg/dpkg/Add-support-for-mipsn32-el-and-mips64-el-to-arch-tab.patch b/meta/recipes-devtools/dpkg/dpkg/Add-support-for-mipsn32-el-and-mips64-el-to-arch-tab.patch
deleted file mode 100644
index abebdc5..0000000
--- a/meta/recipes-devtools/dpkg/dpkg/Add-support-for-mipsn32-el-and-mips64-el-to-arch-tab.patch
+++ /dev/null
@@ -1,78 +0,0 @@
-Upstream-Status: Backport
-
-Signed-off-by: Roy.Li <rongqing.li@windriver.com>
-
-
-From 597a7348527cbe91e35cf04a2e214a562612a768 Mon Sep 17 00:00:00 2001
-From: YunQiang Su <wzssyqa@gmail.com>
-Date: Sat, 22 Jun 2013 06:14:09 +0200
-Subject: [PATCH] Add support for mipsn32(el) and mips64(el) to arch tables
-
-[guillem@debian.org:
- - Remove unneeded abi entry.
- - Fix mips64 endianness. ]
-
-Closes: #685096, #707323
-
-Signed-off-by: Guillem Jover <guillem@debian.org>
----
- abitable | 1 +
- cputable | 2 ++
- ostable | 2 ++
- triplettable | 4 ++++
- 5 files changed, 11 insertions(+)
-
-diff --git a/abitable b/abitable
-index 578228d..300a1ab 100644
---- a/abitable
-+++ b/abitable
-@@ -7,4 +7,5 @@
- # Column 2 is the size (in bits) of the ABI integers/pointers.
- #
- # <Debian name> <Bits>
-+gnuabin32 32
- gnux32 32
-diff --git a/cputable b/cputable
-index c556fdd..d48e59c 100644
---- a/cputable
-+++ b/cputable
-@@ -27,6 +27,8 @@ m32r m32r m32r 32 big
- m68k m68k m68k 32 big
- mips mips mips(eb)? 32 big
- mipsel mipsel mipsel 32 little
-+mips64 mips64 mips64 64 big
-+mips64el mips64el mips64el 64 little
- powerpc powerpc (powerpc|ppc) 32 big
- ppc64 powerpc64 (powerpc|ppc)64 64 big
- s390 s390 s390 32 big
-diff --git a/ostable b/ostable
-index 1383150..29d3843 100644
---- a/ostable
-+++ b/ostable
-@@ -18,6 +18,8 @@ musleabihf-linux linux-musleabihf linux[^-]*-musleabihf
- musl-linux linux-musl linux[^-]*-musl
- gnueabihf-linux linux-gnueabihf linux[^-]*-gnueabihf
- gnueabi-linux linux-gnueabi linux[^-]*-gnueabi
-+gnuabin32-linux linux-gnuabin32 linux[^-]*-gnuabin32
-+gnuabi64-linux linux-gnuabi64 linux[^-]*-gnuabi64
- gnuspe-linux linux-gnuspe linux[^-]*-gnuspe
- gnux32-linux linux-gnux32 linux[^-]*-gnux32
- gnulp-linux linux-gnulp linux[^-]*-gnulp
-diff --git a/triplettable b/triplettable
-index e0d78a4..a2c683f 100644
---- a/triplettable
-+++ b/triplettable
-@@ -9,6 +9,10 @@ musleabihf-linux-arm musl-linux-armhf
- musl-linux-<cpu> musl-linux-<cpu>
- gnueabihf-linux-arm armhf
- gnueabi-linux-arm armel
-+gnuabin32-linux-mips64el mipsn32el
-+gnuabin32-linux-mips64 mipsn32
-+gnuabi64-linux-mips64el mips64el
-+gnuabi64-linux-mips64 mips64
- gnuspe-linux-powerpc powerpcspe
- gnux32-linux-amd64 x32
- gnulp-linux-i386 lpia
---
-1.7.10.4
-
diff --git a/meta/recipes-devtools/dpkg/dpkg/preinst.patch b/meta/recipes-devtools/dpkg/dpkg/preinst.patch
index f9cb408..0549121 100644
--- a/meta/recipes-devtools/dpkg/dpkg/preinst.patch
+++ b/meta/recipes-devtools/dpkg/dpkg/preinst.patch
@@ -6,17 +6,13 @@ Upstream-Status: Inappropriate [OE Specific]
RP 2011/12/07
-Index: dpkg-1.16.8/src/script.c
+Index: dpkg-1.17.1/src/script.c
===================================================================
---- dpkg-1.16.8.orig/src/script.c
-+++ dpkg-1.16.8/src/script.c
-@@ -102,38 +102,10 @@ setexecute(const char *path, struct stat
- static const char *
- preexecscript(struct command *cmd)
- {
-- const char *admindir = dpkg_db_get_dir();
-- size_t instdirl = strlen(instdir);
--
+--- dpkg-1.17.1.orig/src/script.c
++++ dpkg-1.17.1/src/script.c
+@@ -111,36 +111,9 @@ preexecscript(struct command *cmd)
+ size_t instdirl = strlen(instdir);
+
if (*instdir) {
- if (strncmp(admindir, instdir, instdirl) != 0)
- ohshit(_("admindir must be inside instdir for dpkg to work properly"));
@@ -25,10 +21,11 @@ Index: dpkg-1.16.8/src/script.c
-
- if (chroot(instdir))
- ohshite(_("failed to chroot to `%.250s'"), instdir);
-- if (chdir("/"))
-- ohshite(_("failed to chdir to `%.255s'"), "/");
-+ setenv("D", instdir, 1);
- }
+- }
+- /* Switch to a known good directory to give the maintainer script
+- * a saner environment, also needed after the chroot(). */
+- if (chdir("/"))
+- ohshite(_("failed to chdir to `%.255s'"), "/");
- if (debug_has_flag(dbg_scripts)) {
- struct varbuf args = VARBUF_INIT;
- const char **argv = cmd->argv;
@@ -41,7 +38,8 @@ Index: dpkg-1.16.8/src/script.c
- debug(dbg_scripts, "fork/exec %s (%s )", cmd->filename,
- args.buf);
- varbuf_destroy(&args);
-- }
++ setenv("D", instdir, 1);
+ }
- if (!instdirl)
- return cmd->filename;
-
@@ -50,4 +48,4 @@ Index: dpkg-1.16.8/src/script.c
+ return cmd->filename;
}
- static int
+ /**
diff --git a/meta/recipes-devtools/dpkg/dpkg/remove-tar-no-timestamp.patch b/meta/recipes-devtools/dpkg/dpkg/remove-tar-no-timestamp.patch
index 8d884e5..4f408ff 100644
--- a/meta/recipes-devtools/dpkg/dpkg/remove-tar-no-timestamp.patch
+++ b/meta/recipes-devtools/dpkg/dpkg/remove-tar-no-timestamp.patch
@@ -3,14 +3,15 @@ busybox-1.19.4 tar utility doesn't support --warning=no-timestamp
Signed-off-by: Constantin Musca <constantinx.musca@intel.com>
Upstream-Status: Inappropriate [configuration]
---- a/dpkg-deb/extract.c
-+++ b/dpkg-deb/extract.c
-@@ -319,7 +319,7 @@ extracthalf(const char *debar, const cha
- }
- }
+Index: dpkg-1.17.1/dpkg-deb/extract.c
+===================================================================
+--- dpkg-1.17.1.orig/dpkg-deb/extract.c
++++ dpkg-1.17.1/dpkg-deb/extract.c
+@@ -318,7 +318,6 @@ extracthalf(const char *debar, const cha
-- execlp(TAR, "tar", buffer, "-", "--warning=no-timestamp", NULL);
-+ execlp(TAR, "tar", buffer, "-", NULL);
- ohshite(_("unable to execute %s (%s)"), "tar", TAR);
- }
- close(p2[0]);
+ command_add_arg(&cmd, "-f");
+ command_add_arg(&cmd, "-");
+- command_add_arg(&cmd, "--warning=no-timestamp");
+
+ m_dup2(p2[0],0);
+ close(p2[0]);
OpenPOWER on IntegriCloud