summaryrefslogtreecommitdiffstats
path: root/meta/recipes-core/musl/musl
diff options
context:
space:
mode:
authorKhem Raj <raj.khem@gmail.com>2021-08-27 11:06:55 -0700
committerRichard Purdie <richard.purdie@linuxfoundation.org>2021-09-01 14:06:17 +0100
commit380eff02da33369d75fabc93cad375bd6b98325b (patch)
treecea1a47010b995c15e7115e4ae771e3e2411ab79 /meta/recipes-core/musl/musl
parent2226d3db15837f82dc617ed669ba329dc7abde31 (diff)
downloadpoky-380eff02da33369d75fabc93cad375bd6b98325b.tar.gz
musl: Update to latest tip of trunk
Drop upstream patch This brings in following fixes * 3f701faa (upstream/master, origin/master) fix libc-internal signal blocking on mips archs * 0fbd7d66 fix broken struct shmid_ds on powerpc (32-bit) * 4f3d346b math: fix fmaf not to depend on FE_TOWARDZERO * 937822ab fix TZ parsing logic for identifying POSIX-form strings * 1f0c7cb1 riscv: rename __NR_fstatat __NR_newfstatat * d8cb888d remove return with expression in void function * b7a130e0 remove unnecessary cast for map_library return * bd3b9c4c add pthread_getname_np function * e1a51185 fix popen not to leak pipes from one child to another * e74acd59 remove spurious lock in popen * 9a40e842 define __STDC_UTF_{16,32}__ macros (From OE-Core rev: da8fcd0155f1cf3394d0886c940bee77669009d4) Signed-off-by: Khem Raj <raj.khem@gmail.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-core/musl/musl')
-rw-r--r--meta/recipes-core/musl/musl/0001-riscv-Rename-__NR_fstatat-__NR_newfstatat.patch32
1 files changed, 0 insertions, 32 deletions
diff --git a/meta/recipes-core/musl/musl/0001-riscv-Rename-__NR_fstatat-__NR_newfstatat.patch b/meta/recipes-core/musl/musl/0001-riscv-Rename-__NR_fstatat-__NR_newfstatat.patch
deleted file mode 100644
index 9d9f16cee6..0000000000
--- a/meta/recipes-core/musl/musl/0001-riscv-Rename-__NR_fstatat-__NR_newfstatat.patch
+++ /dev/null
@@ -1,32 +0,0 @@
1From 40732d03990632049d5ba63dd736269a81756b16 Mon Sep 17 00:00:00 2001
2From: Khem Raj <raj.khem@gmail.com>
3Date: Wed, 19 May 2021 00:30:05 -0700
4Subject: [PATCH] riscv: Rename __NR_fstatat __NR_newfstatat
5
6on riscv64 this syscall is called __NR_newfstatat
7this helps the name match kernel UAPI for external
8programs
9
10Upstream-Status: Submitted [https://www.openwall.com/lists/musl/2021/05/19/3]
11Signed-off-by: Khem Raj <raj.khem@gmail.com>
12Cc: zabolcs Nagy <nsz@port70.net>
13---
14 arch/riscv64/bits/syscall.h.in | 2 +-
15 1 file changed, 1 insertion(+), 1 deletion(-)
16
17diff --git a/arch/riscv64/bits/syscall.h.in b/arch/riscv64/bits/syscall.h.in
18index f9c421d0..39c0d650 100644
19--- a/arch/riscv64/bits/syscall.h.in
20+++ b/arch/riscv64/bits/syscall.h.in
21@@ -76,7 +76,7 @@
22 #define __NR_splice 76
23 #define __NR_tee 77
24 #define __NR_readlinkat 78
25-#define __NR_fstatat 79
26+#define __NR_newfstatat 79
27 #define __NR_fstat 80
28 #define __NR_sync 81
29 #define __NR_fsync 82
30--
312.31.1
32