glibc: Fix to load patches from arm directory for aarch64 as well

This commit is contained in:
Gábor Deé 2021-07-01 13:15:24 +02:00 committed by dtechsrv
parent 4a47e8f060
commit e4d6559bfd

View File

@ -35,6 +35,11 @@ PKG_CONFIGURE_OPTS_TARGET="BASH_SHELL=/bin/sh \
--enable-lock-elision \ --enable-lock-elision \
--disable-timezone-tools" --disable-timezone-tools"
# workaround to use arm patches for aarch64
if [ "${TARGET_PATCH_ARCH}" = "aarch64" ]; then
PKG_PATCH_DIRS="arm"
fi
# busybox:init needs it # busybox:init needs it
# testcase: boot with /storage as nfs-share (set cmdline.txt -> "ip=dhcp boot=UUID=2407-5145 disk=NFS=[nfs-share] quiet") # testcase: boot with /storage as nfs-share (set cmdline.txt -> "ip=dhcp boot=UUID=2407-5145 disk=NFS=[nfs-share] quiet")
PKG_CONFIGURE_OPTS_TARGET+=" --enable-obsolete-rpc" PKG_CONFIGURE_OPTS_TARGET+=" --enable-obsolete-rpc"