summaryrefslogtreecommitdiffstats
path: root/meta/recipes-core/busybox/busybox.inc
diff options
context:
space:
mode:
Diffstat (limited to 'meta/recipes-core/busybox/busybox.inc')
-rw-r--r--meta/recipes-core/busybox/busybox.inc4
1 files changed, 2 insertions, 2 deletions
diff --git a/meta/recipes-core/busybox/busybox.inc b/meta/recipes-core/busybox/busybox.inc
index 1334d06964..c51cf6a124 100644
--- a/meta/recipes-core/busybox/busybox.inc
+++ b/meta/recipes-core/busybox/busybox.inc
@@ -47,8 +47,8 @@ def busybox_cfg(feature, features, tokens, cnf, rem):
47# Map distro and machine features to config settings 47# Map distro and machine features to config settings
48def features_to_busybox_settings(d): 48def features_to_busybox_settings(d):
49 cnf, rem = ([], []) 49 cnf, rem = ([], [])
50 distro_features = bb.data.getVar('DISTRO_FEATURES', d).split() 50 distro_features = bb.data.getVar('DISTRO_FEATURES', d, True).split()
51 machine_features = bb.data.getVar('MACHINE_FEATURES', d).split() 51 machine_features = bb.data.getVar('MACHINE_FEATURES', d, True).split()
52 busybox_cfg('ipv6', distro_features, 'CONFIG_FEATURE_IPV6', cnf, rem) 52 busybox_cfg('ipv6', distro_features, 'CONFIG_FEATURE_IPV6', cnf, rem)
53 busybox_cfg('largefile', distro_features, 'CONFIG_LFS', cnf, rem) 53 busybox_cfg('largefile', distro_features, 'CONFIG_LFS', cnf, rem)
54 busybox_cfg('largefile', distro_features, 'CONFIG_FDISK_SUPPORT_LARGE_DISKS', cnf, rem) 54 busybox_cfg('largefile', distro_features, 'CONFIG_FDISK_SUPPORT_LARGE_DISKS', cnf, rem)