summaryrefslogtreecommitdiffstats
path: root/meta-microblaze/recipes-core/glibc
Commit message (Collapse)AuthorAgeFilesLines
* meta-microblaze: Rename glibc,libgloss,newlib bbappendsMark Hatle2023-04-121-0/+0
| | | | | | | Versions of these components have changes, rename to allow a wider wild card match. Signed-off-by: Mark Hatle <mark.hatle@amd.com>
* glibc: libc.so.6 contains a textrel on microblazeMark Hatle2023-04-101-0/+1
| | | | | | Disable the textrel warning, as it is expected. Signed-off-by: Mark Hatle <mark.hatle@amd.com>
* meta-microblaze: glibc: Workaround now upstreamMark Hatle2022-08-314-106/+0
| | | | Signed-off-by: Mark Hatle <mark.hatle@kernel.crashing.org>
* meta-microblaze: Move to glibc backportMark Hatle2022-03-283-51/+35
| | | | | | Move to a backport of the official fix for glibc BZ #28883. Signed-off-by: Mark Hatle <mark.hatle@xilinx.com>
* meta-microblaze: Fix glibc issues related to select/pselectMark Hatle2022-02-124-0/+122
*) Select syscall is not implemented on microblaze, newselect should be used instead, but commit 4c3df0eba5e8fe98f0de917ade9b2ebba6951c5f from glibc removed this behavior. Presumably by accident. *) When the code path that doesn't use select, but instead uses pselect32 is used, microblaze provides it's own implementation but this implementation is only available when ASSUME_PSELECT is disabled. We need to fallback to the default Linux implementation. Signed-off-by: Mark Hatle <mark.hatle@xilinx.com>