mirror of
https://git.yoctoproject.org/poky
synced 2026-01-29 21:08:42 +01:00
This brings in: * nftw, nftw64: add wrapper * ftw, nftw, ftw64, nftw64: add tests * Move ftw and ftw64 to calling ntfw and nftw64 * makewrappers: Introduce 'array' support * pseudo_util.c: Avoid warning when we intentionally discard const * pseudo_client.c: Fix warning * yocto-older-glibc-symbols.path: Add as a reference patch * pseudo/pseudo_client: Add wrapper functions to operate correctly with glibc 2.38 onwards * configure: Prune PIE flags * test/test-parallel-rename.sh: Add parallel rename test * test/test-parallel-symlinks.sh: Add parallel symlink test * ports/linux/guts: Add .gitignore to ignore generated files (From OE-Core rev: b3140c624504b19a2b2faec8df89f57a99cefce1) Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org> (cherry picked from commit 994e508b2a0ede8b5cc4fe39444cf25dc9a53faf) Signed-off-by: Yoann Congal <yoann.congal@smile.fr> Signed-off-by: Paul Barker <paul@pbarker.dev> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
28 lines
1.2 KiB
BlitzBasic
28 lines
1.2 KiB
BlitzBasic
require pseudo.inc
|
|
|
|
SRC_URI = "git://git.yoctoproject.org/pseudo;branch=master \
|
|
file://fallback-passwd \
|
|
file://fallback-group \
|
|
"
|
|
SRC_URI:append:class-native = " \
|
|
http://downloads.yoctoproject.org/mirror/sources/pseudo-prebuilt-2.33.tar.xz;subdir=git/prebuilt;name=prebuilt \
|
|
file://older-glibc-symbols.patch"
|
|
SRC_URI:append:class-nativesdk = " \
|
|
http://downloads.yoctoproject.org/mirror/sources/pseudo-prebuilt-2.33.tar.xz;subdir=git/prebuilt;name=prebuilt \
|
|
file://older-glibc-symbols.patch"
|
|
SRC_URI[prebuilt.sha256sum] = "ed9f456856e9d86359f169f46a70ad7be4190d6040282b84c8d97b99072485aa"
|
|
|
|
SRCREV = "3fac97341f0f8270ca28a91098d0a58ca306a6bd"
|
|
S = "${WORKDIR}/git"
|
|
PV = "1.9.0+git${SRCPV}"
|
|
|
|
# largefile and 64bit time_t support adds these macros via compiler flags globally
|
|
# remove them for pseudo since pseudo intercepts some of the functions which will be
|
|
# aliased due to this e.g. open/open64 and it will complain about duplicate definitions
|
|
# pseudo on 32bit systems is not much of use anyway and these features are not of much
|
|
# use for it.
|
|
TARGET_CPPFLAGS:remove = "-D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64"
|
|
|
|
# error: use of undeclared identifier '_STAT_VER'
|
|
COMPATIBLE_HOST:libc-musl = 'null'
|