Message ID | 20241105215725.2859144-1-richard.purdie@linuxfoundation.org |
---|---|
State | Accepted, archived |
Commit | e86686cbdbaf5368fae0a490d52a043f8ed4fa0f |
Headers | show |
Series | bitbake.conf: Enable ipv6/acl/xattr for nativesdk | expand |
diff --git a/meta/conf/bitbake.conf b/meta/conf/bitbake.conf index 14e761e2e7e..977a2576772 100644 --- a/meta/conf/bitbake.conf +++ b/meta/conf/bitbake.conf @@ -916,7 +916,7 @@ 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" # Normally target distro features will not be applied to native builds: # Native distro features on this list will use the target feature value
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 <richard.purdie@linuxfoundation.org> --- meta/conf/bitbake.conf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)