diff options
author | Koen Kooi <koen@openembedded.org> | 2009-02-11 19:58:25 +0100 |
---|---|---|
committer | Koen Kooi <koen@openembedded.org> | 2009-02-11 19:58:25 +0100 |
commit | b58dface5b148d054d6b7c5b3e03afeea7cd9f6d (patch) | |
tree | edd35e9750d13df1935f4ef561156db0613773d6 /packages/busybox/busybox_1.13.2.bb | |
parent | ef14e3df7af903c0aa1a951abc8c1473bc41730f (diff) |
busybox: bandaid for avr32
Diffstat (limited to 'packages/busybox/busybox_1.13.2.bb')
-rw-r--r-- | packages/busybox/busybox_1.13.2.bb | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/packages/busybox/busybox_1.13.2.bb b/packages/busybox/busybox_1.13.2.bb index 5ae76b900d..bff6d27fa6 100644 --- a/packages/busybox/busybox_1.13.2.bb +++ b/packages/busybox/busybox_1.13.2.bb @@ -31,6 +31,9 @@ EXTRA_OEMAKE += "V=1 ARCH=${TARGET_ARCH} CROSS_COMPILE=${TARGET_PREFIX}" do_configure () { install -m 0644 ${WORKDIR}/defconfig ${S}/.config + if [ "${TARGET_ARCH}" = "avr32" ] ; then + sed -i s:CONFIG_FEATURE_OSF_LABEL=y:CONFIG_FEATURE_OSF_LABEL=n: ${S}/.config + fi cml1_do_configure } |