summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRichard Purdie <richard.purdie@linuxfoundation.org>2024-11-05 21:55:31 +0000
committerRichard Purdie <richard.purdie@linuxfoundation.org>2024-11-06 12:18:05 +0000
commit016d10d9abed748e83816b046936cebba3c6b421 (patch)
tree00c7620aa204f48237fa91551efce086a3fabfe0
parent0ddaa2913f73182b48f2069768de691dbccb59dc (diff)
downloadpoky-016d10d9abed748e83816b046936cebba3c6b421.tar.gz
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. (From OE-Core rev: e86686cbdbaf5368fae0a490d52a043f8ed4fa0f) Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
-rw-r--r--meta/conf/bitbake.conf3
1 files changed, 2 insertions, 1 deletions
diff --git a/meta/conf/bitbake.conf b/meta/conf/bitbake.conf
index eda505c861..37fa1cd5e1 100644
--- a/meta/conf/bitbake.conf
+++ b/meta/conf/bitbake.conf
@@ -916,7 +916,8 @@ IMAGE_FEATURES += "${EXTRA_IMAGE_FEATURES}"
916# Native distro features (will always be used for -native, even if they 916# Native distro features (will always be used for -native, even if they
917# are not enabled for target) 917# are not enabled for target)
918DISTRO_FEATURES_NATIVE ?= "acl x11 ipv6 xattr" 918DISTRO_FEATURES_NATIVE ?= "acl x11 ipv6 xattr"
919DISTRO_FEATURES_NATIVESDK ?= "x11" 919DISTRO_FEATURES_NATIVESDK ?= "acl x11 ipv6 xattr"
920DISTRO_FEATURES_NATIVESDK:mingw32 = "x11 ipv6"
920 921
921# Normally target distro features will not be applied to native builds: 922# Normally target distro features will not be applied to native builds:
922# Native distro features on this list will use the target feature value 923# Native distro features on this list will use the target feature value