From e90cfbdc959f4dd8ff422dcd4254b63dcd1e605c Mon Sep 17 00:00:00 2001 From: Saul Wold Date: Wed, 6 Jun 2012 00:27:14 -0700 Subject: 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] (From OE-Core rev: f71258f0ef96802e714b6f12ecc8c17842d6cf87) Signed-off-by: Saul Wold Signed-off-by: Richard Purdie --- meta/recipes-core/busybox/busybox.inc | 2 ++ 1 file changed, 2 insertions(+) (limited to 'meta/recipes-core/busybox/busybox.inc') 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)} -- cgit v1.2.3-54-g00ecf