* [PATCH 0/1] busybox: fix missing features due to lack of variable expansion
@ 2011-07-12 13:59 Paul Eggleton
2011-07-12 13:59 ` [PATCH 1/1] " Paul Eggleton
0 siblings, 1 reply; 3+ messages in thread
From: Paul Eggleton @ 2011-07-12 13:59 UTC (permalink / raw)
To: openembedded-core
This fixes the issue with ipv4/ipv6 features not being enabled in busybox
(which Gary Thomas pointed out on the poky mailing list.)
The following change since commit e66c2999afa2b3efbce8bb46c89f9db5e15f35c7:
libx11: ensure nativesdk uses correct DEPENDS and XCB flags (2011-07-10 09:49:06 +0100)
is available in the git repository at:
git://git.openembedded.org/openembedded-core-contrib paule/busybox-features-fix
http://cgit.openembedded.org/cgit.cgi/openembedded-core-contrib/log/?h=paule/busybox-features-fix
Paul Eggleton (1):
busybox: fix missing features due to lack of variable expansion
meta/recipes-core/busybox/busybox.inc | 4 ++--
meta/recipes-core/busybox/busybox_1.18.4.bb | 2 +-
2 files changed, 3 insertions(+), 3 deletions(-)
--
1.7.4.1
^ permalink raw reply [flat|nested] 3+ messages in thread
* [PATCH 1/1] busybox: fix missing features due to lack of variable expansion
2011-07-12 13:59 [PATCH 0/1] busybox: fix missing features due to lack of variable expansion Paul Eggleton
@ 2011-07-12 13:59 ` Paul Eggleton
2011-07-12 14:12 ` Richard Purdie
0 siblings, 1 reply; 3+ messages in thread
From: Paul Eggleton @ 2011-07-12 13:59 UTC (permalink / raw)
To: openembedded-core
Expand DISTRO_FEATURES and MACHINE_FEATURES fully so that any inner
variable references (such as DISTRO_FEATURES_LIBC) are expanded properly.
Signed-off-by: Paul Eggleton <paul.eggleton@linux.intel.com>
---
meta/recipes-core/busybox/busybox.inc | 4 ++--
meta/recipes-core/busybox/busybox_1.18.4.bb | 2 +-
2 files changed, 3 insertions(+), 3 deletions(-)
diff --git a/meta/recipes-core/busybox/busybox.inc b/meta/recipes-core/busybox/busybox.inc
index 1334d06..c51cf6a 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):
# Map distro and machine features to config settings
def features_to_busybox_settings(d):
cnf, rem = ([], [])
- distro_features = bb.data.getVar('DISTRO_FEATURES', d).split()
- machine_features = bb.data.getVar('MACHINE_FEATURES', d).split()
+ distro_features = bb.data.getVar('DISTRO_FEATURES', d, True).split()
+ machine_features = bb.data.getVar('MACHINE_FEATURES', d, True).split()
busybox_cfg('ipv6', distro_features, 'CONFIG_FEATURE_IPV6', cnf, rem)
busybox_cfg('largefile', distro_features, 'CONFIG_LFS', cnf, rem)
busybox_cfg('largefile', distro_features, 'CONFIG_FDISK_SUPPORT_LARGE_DISKS', cnf, rem)
diff --git a/meta/recipes-core/busybox/busybox_1.18.4.bb b/meta/recipes-core/busybox/busybox_1.18.4.bb
index 5883cc6..9d3d5b1 100644
--- a/meta/recipes-core/busybox/busybox_1.18.4.bb
+++ b/meta/recipes-core/busybox/busybox_1.18.4.bb
@@ -1,5 +1,5 @@
require busybox.inc
-PR = "r5"
+PR = "r6"
SRC_URI = "http://www.busybox.net/downloads/busybox-${PV}.tar.bz2;name=tarball \
file://udhcpscript.patch \
--
1.7.4.1
^ permalink raw reply related [flat|nested] 3+ messages in thread
* Re: [PATCH 1/1] busybox: fix missing features due to lack of variable expansion
2011-07-12 13:59 ` [PATCH 1/1] " Paul Eggleton
@ 2011-07-12 14:12 ` Richard Purdie
0 siblings, 0 replies; 3+ messages in thread
From: Richard Purdie @ 2011-07-12 14:12 UTC (permalink / raw)
To: Patches and discussions about the oe-core layer
On Tue, 2011-07-12 at 14:59 +0100, Paul Eggleton wrote:
> Expand DISTRO_FEATURES and MACHINE_FEATURES fully so that any inner
> variable references (such as DISTRO_FEATURES_LIBC) are expanded properly.
>
> Signed-off-by: Paul Eggleton <paul.eggleton@linux.intel.com>
> ---
> meta/recipes-core/busybox/busybox.inc | 4 ++--
> meta/recipes-core/busybox/busybox_1.18.4.bb | 2 +-
> 2 files changed, 3 insertions(+), 3 deletions(-)
Merged to master, thanks.
Richard
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2011-07-12 14:16 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2011-07-12 13:59 [PATCH 0/1] busybox: fix missing features due to lack of variable expansion Paul Eggleton
2011-07-12 13:59 ` [PATCH 1/1] " Paul Eggleton
2011-07-12 14:12 ` Richard Purdie
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox