From f92e66fc0136a25aba29998d2515d18c97ee8a8c Mon Sep 17 00:00:00 2001 From: Koen Kooi Date: Thu, 14 Sep 2006 15:14:07 +0000 Subject: angstrom: prepare for uclibc/NPTL and seperate uclibc and glibc packages * NOTE: DEPLOY_DIR changed, remove all do_packages and do_install stamps --- conf/distro/angstrom-2007.1.conf | 2 +- conf/distro/include/angstrom.inc | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) (limited to 'conf') diff --git a/conf/distro/angstrom-2007.1.conf b/conf/distro/angstrom-2007.1.conf index fbce661a42..c618d6f134 100644 --- a/conf/distro/angstrom-2007.1.conf +++ b/conf/distro/angstrom-2007.1.conf @@ -103,7 +103,7 @@ PREFERRED_PROVIDER_virtual/arm-angstrom-linux-gnueabi-libc-for-gcc = "glibc-inte PREFERRED_PROVIDER_virtual/arm-linux-libc-for-gcc = "glibc-intermediate" #shouldn't that be uclibc-initial???? -PREFERRED_PROVIDER_virtual/arm-angstrom-linux-uclibcgnueabi-libc-for-gcc = "uclibc" +PREFERRED_PROVIDER_virtual/arm-angstrom-linux-uclibcgnueabi-libc-for-gcc = "uclibc-initial" #use EABI toolchain PREFERRED_VERSION_gcc ?= "4.1.1" diff --git a/conf/distro/include/angstrom.inc b/conf/distro/include/angstrom.inc index ba5687615d..89c01bbd6f 100644 --- a/conf/distro/include/angstrom.inc +++ b/conf/distro/include/angstrom.inc @@ -10,6 +10,7 @@ TARGET_VENDOR = "-angstrom" # Can be "glibc" and "uclibc" ANGSTROM_MODE ?= "glibc" +DEPLOY_DIR = "${TMPDIR}/deploy/${ANGSTROM_MODE}" require conf/distro/include/angstrom-${ANGSTROM_MODE}.inc #Use this variable in feeds and other parts that need a URI -- cgit v1.2.3 From 86e783303fbf3f9f0d95c876f31bda357ea41974 Mon Sep 17 00:00:00 2001 From: Chris Larson Date: Fri, 15 Sep 2006 07:46:43 +0000 Subject: classes/package.bbclass,conf/bitbake.conf: * Add package "depchains". This facilitates, for example, ensuring that if A depends upon B, then A-dev will RRECOMMENDS B-dev, and the same for the -dbg packages. --- conf/bitbake.conf | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'conf') diff --git a/conf/bitbake.conf b/conf/bitbake.conf index e83f2b5667..02a072ca66 100644 --- a/conf/bitbake.conf +++ b/conf/bitbake.conf @@ -96,6 +96,11 @@ HOMEPAGE = "unknown" # Package dependencies and provides. +# Ensure that -dev packages recommend the corresponding -dev packages of their +# deps, and the same for -dbg. +DEPCHAIN_PRE = "" +DEPCHAIN_POST = "-dev -dbg" + DEPENDS = "" RDEPENDS = "" PROVIDES = "" -- cgit v1.2.3