summaryrefslogtreecommitdiffstats
path: root/meta-microblaze
diff options
context:
space:
mode:
authorMark Hatle <mark.hatle@kernel.crashing.org>2022-07-28 15:35:26 -0500
committerMark Hatle <mark.hatle@kernel.crashing.org>2022-08-31 19:54:10 -0500
commit4be7d3891520d1387eeb693ab5e25dc40cfb35f8 (patch)
treefd2868df628d8b6af0cf912fcf5722785f74ee41 /meta-microblaze
parent08e0b6adee91ecf1148381490df2d95ef7807c30 (diff)
downloadmeta-xilinx-4be7d3891520d1387eeb693ab5e25dc40cfb35f8.tar.gz
meta-microblaze: libxcrypt: Workaround no longer required
Signed-off-by: Mark Hatle <mark.hatle@kernel.crashing.org>
Diffstat (limited to 'meta-microblaze')
-rw-r--r--meta-microblaze/recipes-core/libxcrypt/files/use-older-symver.patch15
-rw-r--r--meta-microblaze/recipes-core/libxcrypt/libxcrypt_%.bbappend4
2 files changed, 0 insertions, 19 deletions
diff --git a/meta-microblaze/recipes-core/libxcrypt/files/use-older-symver.patch b/meta-microblaze/recipes-core/libxcrypt/files/use-older-symver.patch
deleted file mode 100644
index 4e6d5ecf..00000000
--- a/meta-microblaze/recipes-core/libxcrypt/files/use-older-symver.patch
+++ /dev/null
@@ -1,15 +0,0 @@
1Avoid an issue on microblaze where the symver attribute is not available.
2
3diff --git a/lib/crypt-port.h b/lib/crypt-port.h
4index 3fa5222..80c3d91 100644
5--- a/lib/crypt-port.h
6+++ b/lib/crypt-port.h
7@@ -208,7 +208,7 @@ extern size_t strcpy_or_abort (void *dst, size_t d_size, const void *src);
8
9 /* Starting with GCC 10, we can use the symver attribute, which is also
10 needed at the point we decide to enable link-time optimization. */
11-# if __GNUC__ >= 10
12+# if __GNUC__ >= 10 && ! defined (__MICROBLAZE__)
13
14 /* Set the symbol version for EXTNAME, which uses INTNAME as its
15 implementation. */
diff --git a/meta-microblaze/recipes-core/libxcrypt/libxcrypt_%.bbappend b/meta-microblaze/recipes-core/libxcrypt/libxcrypt_%.bbappend
deleted file mode 100644
index 3743e905..00000000
--- a/meta-microblaze/recipes-core/libxcrypt/libxcrypt_%.bbappend
+++ /dev/null
@@ -1,4 +0,0 @@
1FILESEXTRAPATHS:append:microblaze := ":${THISDIR}/files"
2SRC_URI:append:microblaze = " \
3 file://use-older-symver.patch \
4"