diff options
author | Khem Raj <raj.khem@gmail.com> | 2009-09-03 15:22:46 -0700 |
---|---|---|
committer | Khem Raj <raj.khem@gmail.com> | 2009-09-03 15:34:56 -0700 |
commit | 558f6d44365f062523fbba3926ab46e5cd1984b8 (patch) | |
tree | 67123ae2247951ded269701de07cb06977e1e94a /conf/distro/minimal.conf | |
parent | b9feafad3e4f1cac5e0eb4d6da498febdea7d5ae (diff) |
OpenEmbedded: Switch to using linux-uclibceabi and linux-gnu for TARGET_OS
* Bump the ABI_LAYOUT. Build from scratch will be needed.
* Replace using TARGET_OS from linux->linux-gnu.
* Replace using linux-uclibcgnueabi->linux-uclibceabi.
* Add 'eabi' to DISTRO_FEATURES (only for minimal and micro).
* Use eabi and BASE_PACKAGE_ARCH to compute real TARGET_OS.
* Fix the micro conf to get console image building.
* Fix the linux-uclibcgnueabi overrides in all recipes.
Signed-off-by: Khem Raj <raj.khem@gmail.com>
Acked-by: Phill Blundell <pb@reciva.com>
Acked-by: Michael 'Mickey' Lauer <mickey@vanille-media.de>
Diffstat (limited to 'conf/distro/minimal.conf')
-rw-r--r-- | conf/distro/minimal.conf | 12 |
1 files changed, 7 insertions, 5 deletions
diff --git a/conf/distro/minimal.conf b/conf/distro/minimal.conf index fa2a926a1d..ecf6649fab 100644 --- a/conf/distro/minimal.conf +++ b/conf/distro/minimal.conf @@ -25,6 +25,8 @@ DISTRO_CHECK := "${@bb.data.getVar("DISTRO_VERSION",d,1) or bb.fatal('Remove thi DISTRO_BLUETOOTH_MANAGER = "bluez4" # We want images supporting the following features (for task-base) DISTRO_FEATURES = "nfs smbfs wifi ppp alsa ext2 vfat pcmcia usbgadget usbhost pci" +# Following features are for ARM and E500 based machines +DISTRO_FEATURES += "eabi" ############################################################################# # LIBRARY NAMES @@ -71,15 +73,15 @@ KERNEL = "kernel26" MACHINE_KERNEL_VERSION = "2.6" ############################################################################# -# TOOLCHAIN +# OVERWRITES adjusted from bitbake.conf to feature the MACHINE_CLASS ############################################################################# -LIBC ?= "eglibc" -require conf/distro/include/sane-toolchain.inc +OVERRIDES = "local:${MACHINE}:${MACHINE_CLASS}:${DISTRO}:${TARGET_OS}:${TARGET_ARCH}:build-${BUILD_OS}:fail-fast:pn-${PN}" ############################################################################# -# OVERWRITES adjusted from bitbake.conf to feature the MACHINE_CLASS +# TOOLCHAIN ############################################################################# -OVERRIDES = "local:${MACHINE}:${MACHINE_CLASS}:${DISTRO}:${TARGET_OS}:${TARGET_ARCH}:build-${BUILD_OS}:fail-fast:pn-${PN}" +LIBC ?= "eglibc" +require conf/distro/include/sane-toolchain.inc ############################################################################# # PREFERRED PROVIDERS |