aboutsummaryrefslogtreecommitdiffstats
path: root/meta/recipes-core/busybox/busybox.inc
diff options
context:
space:
mode:
authorSaul Wold <sgw@linux.intel.com>2012-06-06 00:27:14 -0700
committerRichard Purdie <richard.purdie@linuxfoundation.org>2012-06-15 15:09:17 +0100
commitf71258f0ef96802e714b6f12ecc8c17842d6cf87 (patch)
tree229ba19ddafc55db7853ee2179fe7d66ef625fec /meta/recipes-core/busybox/busybox.inc
parent316fac638646a50149f36ec4687b5a2a6d2e83b1 (diff)
downloadopenembedded-core-contrib-f71258f0ef96802e714b6f12ecc8c17842d6cf87.tar.gz
busybox: Add check for wifi/bluetooth to enable rfkill
rfkill is a usefull tool when you have a device with bluetooth and wifi enabled [YOCTO #2494] Signed-off-by: Saul Wold <sgw@linux.intel.com>
Diffstat (limited to 'meta/recipes-core/busybox/busybox.inc')
-rw-r--r--meta/recipes-core/busybox/busybox.inc2
1 files changed, 2 insertions, 0 deletions
diff --git a/meta/recipes-core/busybox/busybox.inc b/meta/recipes-core/busybox/busybox.inc
index 5b83d32fc1..db337ad6ab 100644
--- a/meta/recipes-core/busybox/busybox.inc
+++ b/meta/recipes-core/busybox/busybox.inc
@@ -57,6 +57,8 @@ def features_to_busybox_settings(d):
busybox_cfg('nls', distro_features, 'CONFIG_LOCALE_SUPPORT', cnf, rem)
busybox_cfg('ipv4', distro_features, 'CONFIG_FEATURE_IFUPDOWN_IPV4', cnf, rem)
busybox_cfg('ipv6', distro_features, 'CONFIG_FEATURE_IFUPDOWN_IPV6', cnf, rem)
+ busybox_cfg('wifi', distro_features, 'CONFIG_RFKILL', cnf, rem)
+ busybox_cfg('bluetooth', distro_features, 'CONFIG_RFKILL', cnf, rem)
return "\n".join(cnf), "\n".join(rem)
# X, Y = ${@features_to_uclibc_settings(d)}