aboutsummaryrefslogtreecommitdiffstats
path: root/meta-oe/recipes-core/toybox/toybox/mips-no-STKFLT.patch
diff options
context:
space:
mode:
Diffstat (limited to 'meta-oe/recipes-core/toybox/toybox/mips-no-STKFLT.patch')
-rw-r--r--meta-oe/recipes-core/toybox/toybox/mips-no-STKFLT.patch25
1 files changed, 0 insertions, 25 deletions
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 7ab95932cf..0000000000
--- 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