From: Richard Purdie Date: Tue, 5 Nov 2024 21:55:31 +0000 (+0000) Subject: bitbake.conf: Enable ipv6/acl/xattr for nativesdk X-Git-Tag: yocto-5.2~1410 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=e86686cbdbaf5368fae0a490d52a043f8ed4fa0f;p=thirdparty%2Fopenembedded%2Fopenembedded-core-contrib.git bitbake.conf: Enable ipv6/acl/xattr for nativesdk I was surprised to realise our buildtools doesn't support IPv6 which breaks usage in our own autobuilder, let alone anywhere else. Enable ipv6 in our SDKs and enable acl/xattr as well before we have the same kind of issues with those, these features are now common on most linux systems and we should be defaulting to including them. Signed-off-by: Richard Purdie --- diff --git a/meta/conf/bitbake.conf b/meta/conf/bitbake.conf index eda505c8617..37fa1cd5e16 100644 --- a/meta/conf/bitbake.conf +++ b/meta/conf/bitbake.conf @@ -916,7 +916,8 @@ IMAGE_FEATURES += "${EXTRA_IMAGE_FEATURES}" # Native distro features (will always be used for -native, even if they # are not enabled for target) DISTRO_FEATURES_NATIVE ?= "acl x11 ipv6 xattr" -DISTRO_FEATURES_NATIVESDK ?= "x11" +DISTRO_FEATURES_NATIVESDK ?= "acl x11 ipv6 xattr" +DISTRO_FEATURES_NATIVESDK:mingw32 = "x11 ipv6" # Normally target distro features will not be applied to native builds: # Native distro features on this list will use the target feature value