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/micro.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/micro.conf')
-rw-r--r-- | conf/distro/micro.conf | 11 |
1 files changed, 3 insertions, 8 deletions
diff --git a/conf/distro/micro.conf b/conf/distro/micro.conf index 2d45425290..aca4a18caf 100644 --- a/conf/distro/micro.conf +++ b/conf/distro/micro.conf @@ -16,16 +16,10 @@ DISTRO_NAME = "micro" DISTRO_VERSION = "${SRCDATE}" ############################################################################# -# TARGET OS -############################################################################# -# Linux -TARGET_OS = "linux" - -############################################################################# # DISTRO FEATURE SELECTION ############################################################################# # No features selected -DISTRO_FEATURES = "" +DISTRO_FEATURES = "eabi" ############################################################################# # LIBRARY NAMES @@ -79,7 +73,7 @@ ${TARGET_ARCH}:build-${BUILD_OS}:fail-fast:pn-${PN}" # PREFERRED PROVIDERS ############################################################################# PREFERRED_PROVIDER_task-bootstrap = "task-bootstrap" - +PREFERRED_PROVIDER_virtual/libx11 = "libx11" ############################################################################# # PREFERRED VERSIONS ############################################################################# @@ -110,3 +104,4 @@ USE_LDCONFIG = "0" # Disable online package management ONLINE_PACKAGE_MANAGEMENT = "none" +DISTRO_BLUETOOTH_MANAGER = "bluez4" |