From 39deb7c94e862b2c709487fa94ad54bbd3cfc358 Mon Sep 17 00:00:00 2001 From: Koen Kooi Date: Tue, 16 May 2006 10:03:02 +0000 Subject: angstrom: adjust angstrom uri --- conf/distro/angstrom.conf | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'conf') diff --git a/conf/distro/angstrom.conf b/conf/distro/angstrom.conf index a94fcee140..403b13934f 100644 --- a/conf/distro/angstrom.conf +++ b/conf/distro/angstrom.conf @@ -5,8 +5,8 @@ DISTRO = "angstrom" DISTRO_NAME = "Angstrom" -#we'll use this till we get a real domain -ANGSTROM_URI = "http://ewi546.ewi.utwente.nl/angstrom" +#Use this variable in feeds and other parts that need a URI +ANGSTROM_URI = "http://www.angstrom-distribution.org/" #Set the default maintainer to angstrom-dev MAINTAINER = "Angstrom Developers " -- cgit v1.2.3 From 641ecff78a3222facdc0b527966e7b3ee95123dc Mon Sep 17 00:00:00 2001 From: Koen Kooi Date: Tue, 16 May 2006 10:12:40 +0000 Subject: angstrom-2006.9: slide hh.org pxa kernel cvsdate forward a bit --- conf/distro/angstrom-2006.9.conf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'conf') diff --git a/conf/distro/angstrom-2006.9.conf b/conf/distro/angstrom-2006.9.conf index 58d6c2ad38..405a48721f 100644 --- a/conf/distro/angstrom-2006.9.conf +++ b/conf/distro/angstrom-2006.9.conf @@ -23,7 +23,7 @@ FEED_URIS += " \ # updates##${ANGSTROM_URI}/releases/${DISTRO_VERSION}/feed/updates" SRCDATE = "20060425" -SRCDATE_handhelds-pxa-2.6 = "20060506" +SRCDATE_handhelds-pxa-2.6 = "20060516" CVS_TARBALL_STASH = "\ http://ewi546.ewi.utwente.nl/mirror/www.openzaurus.org/official/unstable/3.5.4/sources/ \ -- cgit v1.2.3 From 614fae713de4e9804b3a658f54674dba652250a2 Mon Sep 17 00:00:00 2001 From: Holger Freyther Date: Tue, 16 May 2006 21:40:52 +0000 Subject: conf/bitbake.conf: Use -isystem instead of -I for the staging incdir. This will make the staging directory to be the last one in the include chain, this should make all 'local' includes be handled first and only then we will fall back to the staging directory. nice option... --- conf/bitbake.conf | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'conf') diff --git a/conf/bitbake.conf b/conf/bitbake.conf index 2043a500eb..bcff586b82 100644 --- a/conf/bitbake.conf +++ b/conf/bitbake.conf @@ -239,9 +239,9 @@ EXTRA_OEMAKE = "-e MAKEFLAGS=" # Build flags and options. ################################################################## -export BUILD_CPPFLAGS = "-I${STAGING_DIR}/${BUILD_SYS}/include" +export BUILD_CPPFLAGS = "-isystem${STAGING_DIR}/${BUILD_SYS}/include" export CPPFLAGS = "${TARGET_CPPFLAGS}" -export TARGET_CPPFLAGS = "-I${STAGING_DIR}/${TARGET_SYS}/include" +export TARGET_CPPFLAGS = "-isystem${STAGING_DIR}/${TARGET_SYS}/include" export BUILD_CFLAGS = "${BUILD_CPPFLAGS} ${BUILD_OPTIMIZATION}" export CFLAGS = "${TARGET_CFLAGS}" -- cgit v1.2.3 From a57d7d248644e1dc81dc97e6d03e56ce9e16ed51 Mon Sep 17 00:00:00 2001 From: Holger Freyther Date: Tue, 16 May 2006 21:44:32 +0000 Subject: conf/bitbake.conf: Add an alternative OVERRIDES line to enable my gcc hacks to make things fail fast. --- conf/bitbake.conf | 2 ++ 1 file changed, 2 insertions(+) (limited to 'conf') diff --git a/conf/bitbake.conf b/conf/bitbake.conf index bcff586b82..54815cd0a0 100644 --- a/conf/bitbake.conf +++ b/conf/bitbake.conf @@ -383,6 +383,8 @@ AUTO_LIBNAME_PKGS = "${PACKAGES}" # # This works for functions as well, they are really just environment variables. OVERRIDES = "local:${MACHINE}:${DISTRO}:${TARGET_OS}:${TARGET_ARCH}:build-${BUILD_OS}" +# Alternative OVERRIDES to make compilation fail fast, we will enable it by default soon +#OVERRIDES = "local:${MACHINE}:${DISTRO}:${TARGET_OS}:${TARGET_ARCH}:build-${BUILD_OS}:fail-fast" ################################################################## # Include the rest of the config files. -- cgit v1.2.3