All of lore.kernel.org
 help / color / mirror / Atom feed
* [oe] [meta-oe] [PATCH] toybox: upgrade 0.8.3 -> 0.8.4
@ 2020-10-30  5:59 zangrc
  0 siblings, 0 replies; only message in thread
From: zangrc @ 2020-10-30  5:59 UTC (permalink / raw)
  To: openembedded-devel

0001-Tackle-SIGEMT-and-SIGSTKFLT-is-not-glibc-specific.patch
mips-no-STKFLT.patch
Removed since these are included in 0.8.4

Signed-off-by: Zang Ruochen <zangrc.fnst@cn.fujitsu.com>
---
 ...-and-SIGSTKFLT-is-not-glibc-specific.patch | 30 -------------------
 .../toybox/toybox/mips-no-STKFLT.patch        | 25 ----------------
 .../{toybox_0.8.3.bb => toybox_0.8.4.bb}      |  4 +--
 3 files changed, 1 insertion(+), 58 deletions(-)
 delete mode 100644 meta-oe/recipes-core/toybox/toybox/0001-Tackle-SIGEMT-and-SIGSTKFLT-is-not-glibc-specific.patch
 delete mode 100644 meta-oe/recipes-core/toybox/toybox/mips-no-STKFLT.patch
 rename meta-oe/recipes-core/toybox/{toybox_0.8.3.bb => toybox_0.8.4.bb} (94%)

diff --git a/meta-oe/recipes-core/toybox/toybox/0001-Tackle-SIGEMT-and-SIGSTKFLT-is-not-glibc-specific.patch b/meta-oe/recipes-core/toybox/toybox/0001-Tackle-SIGEMT-and-SIGSTKFLT-is-not-glibc-specific.patch
deleted file mode 100644
index faabc597e..000000000
--- a/meta-oe/recipes-core/toybox/toybox/0001-Tackle-SIGEMT-and-SIGSTKFLT-is-not-glibc-specific.patch
+++ /dev/null
@@ -1,30 +0,0 @@
-From 9e5b1420b89813ee3c58c2b792077fa8bb71f327 Mon Sep 17 00:00:00 2001
-From: Khem Raj <raj.khem@gmail.com>
-Date: Thu, 21 May 2020 13:53:27 -0700
-Subject: [PATCH] Tackle SIGEMT and SIGSTKFLT is not glibc specific
-
-Signed-off-by: Khem Raj <raj.khem@gmail.com>
----
- lib/portability.c | 5 ++++-
- 1 file changed, 4 insertions(+), 1 deletion(-)
-
-diff --git a/lib/portability.c b/lib/portability.c
-index 294141c6..1c7ebc12 100644
---- a/lib/portability.c
-+++ b/lib/portability.c
-@@ -430,8 +430,11 @@ static const struct signame signames[] = {
-   // Non-POSIX signals that cause termination
-   SIGNIFY(PROF), SIGNIFY(IO),
- #ifdef __linux__
--# if !defined(__GLIBC__) && !defined(__mips__)
-+# ifdef SIGSTKFLT
-    SIGNIFY(STKFLT),
-+# endif
-+# ifdef SIGEMT
-+   SIGNIFY(EMT),
- # endif
-   SIGNIFY(POLL), SIGNIFY(PWR),
- #elif defined(__APPLE__)
--- 
-2.26.2
-
diff --git a/meta-oe/recipes-core/toybox/toybox/mips-no-STKFLT.patch b/meta-oe/recipes-core/toybox/toybox/mips-no-STKFLT.patch
deleted file mode 100644
index 7ab95932c..000000000
--- a/meta-oe/recipes-core/toybox/toybox/mips-no-STKFLT.patch
+++ /dev/null
@@ -1,25 +0,0 @@
-glibc on mips is missing SIGSTKFLT
-
-Do not therefore assume it being available linuxwide
-
-Fixes
-| lib/portability.c:433:3: error: use of undeclared identifier 'SIGSTKFLT'
-|   SIGNIFY(STKFLT), SIGNIFY(POLL), SIGNIFY(PWR),
-|   ^
-
-Upstream-Status: Submitted [https://github.com/landley/toybox/pull/195]
-Signed-off-by: Khem Raj <raj.khem@gmail.com>
---- a/lib/portability.c
-+++ b/lib/portability.c
-@@ -430,7 +430,10 @@ static const struct signame signames[] =
-   // Non-POSIX signals that cause termination
-   SIGNIFY(PROF), SIGNIFY(IO),
- #ifdef __linux__
--  SIGNIFY(STKFLT), SIGNIFY(POLL), SIGNIFY(PWR),
-+# if !defined(__GLIBC__) && !defined(__mips__)
-+   SIGNIFY(STKFLT),
-+# endif
-+  SIGNIFY(POLL), SIGNIFY(PWR),
- #elif defined(__APPLE__)
-   SIGNIFY(EMT), SIGNIFY(INFO),
- #endif
diff --git a/meta-oe/recipes-core/toybox/toybox_0.8.3.bb b/meta-oe/recipes-core/toybox/toybox_0.8.4.bb
similarity index 94%
rename from meta-oe/recipes-core/toybox/toybox_0.8.3.bb
rename to meta-oe/recipes-core/toybox/toybox_0.8.4.bb
index 1513255c4..cc98b9ec0 100644
--- a/meta-oe/recipes-core/toybox/toybox_0.8.3.bb
+++ b/meta-oe/recipes-core/toybox/toybox_0.8.4.bb
@@ -8,10 +8,8 @@ LIC_FILES_CHKSUM = "file://LICENSE;md5=78659a599b9325da368f2f1eb88f19c7"
 inherit cml1 update-alternatives
 
 SRC_URI = "http://www.landley.net/toybox/downloads/${BPN}-${PV}.tar.gz \
-           file://mips-no-STKFLT.patch \
-           file://0001-Tackle-SIGEMT-and-SIGSTKFLT-is-not-glibc-specific.patch \
            "
-SRC_URI[sha256sum] = "eab28fd29d19d4e61ef09704e5871940e6f35fd35a3bb1285e41f204504b5c01"
+SRC_URI[sha256sum] = "cb2a565a8d30015d08d73628795dca51a85b99b149aeabbbecd9e8dbdbd8fddc"
 
 SECTION = "base"
 
-- 
2.25.1




^ permalink raw reply related	[flat|nested] only message in thread

only message in thread, other threads:[~2020-10-30  5:59 UTC | newest]

Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-10-30  5:59 [oe] [meta-oe] [PATCH] toybox: upgrade 0.8.3 -> 0.8.4 zangrc

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.