aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorHauke Mehrtens <hauke@hauke-m.de>2023-05-18 19:29:18 +0200
committerHauke Mehrtens <hauke@hauke-m.de>2023-05-19 11:56:45 +0200
commita665c8e5bd31df6db232ceb4df8bc77481fc1413 (patch)
treefeb0db2e34769fb03e65c82b23b3715596a8a4cf
parenta384490b102c72b262b716ec746e75dc27f89727 (diff)
downloadupstream-a665c8e5bd31df6db232ceb4df8bc77481fc1413.tar.gz
upstream-a665c8e5bd31df6db232ceb4df8bc77481fc1413.tar.bz2
upstream-a665c8e5bd31df6db232ceb4df8bc77481fc1413.zip
util-linux: Fix build on powerpc and arc
This fixes the build of util-linux on powerpc and arc. Both CPU architectures were not supported here in addition to the missing MIPS support. Fixes: 628a410ed149 ("util-linux: update to 2.39") Signed-off-by: Hauke Mehrtens <hauke@hauke-m.de>
-rw-r--r--package/utils/util-linux/patches/0001-test_enosys-add-support-for-mips.patch18
1 files changed, 15 insertions, 3 deletions
diff --git a/package/utils/util-linux/patches/0001-test_enosys-add-support-for-mips.patch b/package/utils/util-linux/patches/0001-test_enosys-add-support-for-mips.patch
index 602ffe67e7..f8c8f851ec 100644
--- a/package/utils/util-linux/patches/0001-test_enosys-add-support-for-mips.patch
+++ b/package/utils/util-linux/patches/0001-test_enosys-add-support-for-mips.patch
@@ -1,24 +1,36 @@
From 2558932c65524d953e4c86d7fda2282a582aa5ec Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Thomas=20Wei=C3=9Fschuh?= <thomas@t-8ch.de>
Date: Wed, 17 May 2023 16:50:47 +0200
-Subject: [PATCH] test_enosys: add support for mips
+Subject: [PATCH] test_enosys: add support for mips, powerpc and arc
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
Signed-off-by: Thomas Weißschuh <thomas@t-8ch.de>
---
- tests/helpers/test_enosys.c | 2 ++
+ tests/helpers/test_enosys.c | 14 ++
1 file changed, 2 insertions(+)
--- a/tests/helpers/test_enosys.c
+++ b/tests/helpers/test_enosys.c
-@@ -53,6 +53,8 @@
+@@ -53,6 +53,20 @@
# else
# define SECCOMP_ARCH_NATIVE AUDIT_ARCH_PPC64LE
# endif
++#elif __powerpc__
++# define SECCOMP_ARCH_NATIVE AUDIT_ARCH_PPC
+#elif __mips__
++# if __BYTE_ORDER__ == __ORDER_BIG_ENDIAN__
+# define SECCOMP_ARCH_NATIVE AUDIT_ARCH_MIPS
++# else
++# define SECCOMP_ARCH_NATIVE AUDIT_ARCH_MIPSEL
++# endif
++#elif __arc__
++# if __BYTE_ORDER__ == __ORDER_BIG_ENDIAN__
++# define SECCOMP_ARCH_NATIVE AUDIT_ARCH_ARCV2BE
++# else
++# define SECCOMP_ARCH_NATIVE AUDIT_ARCH_ARCV2
++# endif
#else
# error Unknown target architecture
#endif