mirror of
https://git.yoctoproject.org/poky
synced 2026-03-05 14:59:41 +01:00
There are issues with a change made to RTLD_NEXT behaviour in glibc 2.24 and that change was also backported to older glibc versions in some distros like Fedora 23. This adds a workaround whilst the pseudo maintainer fixes various issues properly. (From OE-Core rev: 21c38a091c4a1917f62a942c4751b0fd11dce340) Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
24 lines
891 B
BlitzBasic
24 lines
891 B
BlitzBasic
require pseudo.inc
|
|
|
|
SRC_URI = "http://downloads.yoctoproject.org/releases/pseudo/${BPN}-${PV}.tar.bz2 \
|
|
file://0001-configure-Prune-PIE-flags.patch \
|
|
file://fallback-passwd \
|
|
file://fallback-group \
|
|
file://moreretries.patch \
|
|
file://handle-remove-xattr.patch \
|
|
file://obey-ldflags.patch \
|
|
file://pseudo-glibc-rtld-next-workaround.patch \
|
|
"
|
|
|
|
SRC_URI[md5sum] = "c10209938f03128d0c193f041ff3596d"
|
|
SRC_URI[sha256sum] = "fd89cadec984d3b8202aca465898b1bb4350e0d63ba9aa9ac899f6f50270e688"
|
|
|
|
PSEUDO_EXTRA_OPTS ?= "--enable-force-async --without-passwd-fallback"
|
|
|
|
do_install_append_class-native () {
|
|
install -d ${D}${sysconfdir}
|
|
# The fallback files should never be modified
|
|
install -m 444 ${WORKDIR}/fallback-passwd ${D}${sysconfdir}/passwd
|
|
install -m 444 ${WORKDIR}/fallback-group ${D}${sysconfdir}/group
|
|
}
|