diff options
author | Khem Raj <raj.khem@gmail.com> | 2023-08-01 22:18:28 -0700 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2023-08-04 11:44:28 +0100 |
commit | 024bea32984174885a1767b063816077781fbc6b (patch) | |
tree | 6b36ad5dc5b6399ade196f2882121d9d781e69f1 /meta/recipes-core/musl | |
parent | 2d2860206f0b1104847d740c71452eb780cce983 (diff) | |
download | poky-024bea32984174885a1767b063816077781fbc6b.tar.gz |
musl: Upgrade to tip of trunk
Brings following changes
* 83b858f8 fix rejection of dns responses with pointers past 512 byte offset
* a4ecaf89 dns stub resolver: increase buffer size to handle chained CNAMEs
* 40834f6c printf core: fix gratuitous integer formatting buffer size
* 3a23cd06 all printf variants: fix argument type handling for %c and %lc
* fa4a8abd fix public clone function to be safe and usable by applications
* 0c277ff1 fix broken thread list unlocking after fork
* 4653b987 mbrtowc: Fix wrong return value when n > UINT_MAX
* b90841e2 configure: replace -Os with equivalent based on -O2
(From OE-Core rev: b6abcd4f01aec24393bce68a9806d94702c0d387)
Signed-off-by: Khem Raj <raj.khem@gmail.com>
Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-core/musl')
-rw-r--r-- | meta/recipes-core/musl/musl_git.bb | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/meta/recipes-core/musl/musl_git.bb b/meta/recipes-core/musl/musl_git.bb index b4c2b1f898..297c5581a3 100644 --- a/meta/recipes-core/musl/musl_git.bb +++ b/meta/recipes-core/musl/musl_git.bb | |||
@@ -4,7 +4,7 @@ | |||
4 | require musl.inc | 4 | require musl.inc |
5 | inherit linuxloader | 5 | inherit linuxloader |
6 | 6 | ||
7 | SRCREV = "718f363bc2067b6487900eddc9180c84e7739f80" | 7 | SRCREV = "83b858f83b658bd34eca5d8ad4d145f673ae7e5e" |
8 | 8 | ||
9 | BASEVER = "1.2.4" | 9 | BASEVER = "1.2.4" |
10 | 10 | ||
@@ -12,11 +12,13 @@ PV = "${BASEVER}+git${SRCPV}" | |||
12 | 12 | ||
13 | # mirror is at git://github.com/kraj/musl.git | 13 | # mirror is at git://github.com/kraj/musl.git |
14 | 14 | ||
15 | SRC_URI = "git://git.musl-libc.org/git/musl;branch=master;protocol=https \ | 15 | SRC_URI = "git://git.musl-libc.org/git/musl.git;branch=master;protocol=https \ |
16 | file://0001-Make-dynamic-linker-a-relative-symlink-to-libc.patch \ | 16 | file://0001-Make-dynamic-linker-a-relative-symlink-to-libc.patch \ |
17 | file://0002-ldso-Use-syslibdir-and-libdir-as-default-pathes-to-l.patch \ | 17 | file://0002-ldso-Use-syslibdir-and-libdir-as-default-pathes-to-l.patch \ |
18 | " | 18 | " |
19 | 19 | ||
20 | MIRRORS += "git://git.musl-libc.org/git/musl.git git://github.com/kraj/musl.git" | ||
21 | |||
20 | S = "${WORKDIR}/git" | 22 | S = "${WORKDIR}/git" |
21 | 23 | ||
22 | PROVIDES += "virtual/libc virtual/libiconv virtual/libintl virtual/crypt" | 24 | PROVIDES += "virtual/libc virtual/libiconv virtual/libintl virtual/crypt" |