From 5dc5cbd686c8c3e17faa98ed810c0bcc82051578 Mon Sep 17 00:00:00 2001 From: Richard Purdie Date: Sat, 7 Jan 2006 22:45:09 +0000 Subject: Add ASSUME_PROVIDED line for prerequisite software to bitbake.conf. People may like to check their local.conf files append to ASSUME_PROVIDED... --- conf/bitbake.conf | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/conf/bitbake.conf b/conf/bitbake.conf index bebad809d2..61c08758b2 100644 --- a/conf/bitbake.conf +++ b/conf/bitbake.conf @@ -66,6 +66,12 @@ DATE := "${@time.strftime('%Y%m%d',time.gmtime())}" TIME := "${@time.strftime('%H%M%S',time.gmtime())}" DATETIME = "${DATE}${TIME}" +################################################################## +# Openembedded Software Prerequisites. +################################################################## + +ASSUME_PROVIDED = "python-native cvs-native svn-native" + ################################################################## # Package default variables. ################################################################## -- cgit v1.2.3 From 4b1a478eee9aa26770c6a2a7d68daf8d6cf21fae Mon Sep 17 00:00:00 2001 From: Richard Purdie Date: Sat, 7 Jan 2006 23:06:23 +0000 Subject: Update local.conf.sample to append to ASSUME_PROVIDED as a better example of usage. --- conf/local.conf.sample | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/conf/local.conf.sample b/conf/local.conf.sample index 8515247d40..cbe829c2a1 100644 --- a/conf/local.conf.sample +++ b/conf/local.conf.sample @@ -34,11 +34,11 @@ BBMASK = "" # provide packages for toolchain and additional libraries yourself. You also # have to set PATH in your environment to make sure BitBake finds additional binaries. # Note: You will definitely need to say: -# ASSUME_PROVIDED = "virtual/arm-linux-gcc-2.95" +# ASSUME_PROVIDED += "virtual/arm-linux-gcc-2.95" # to build any of two Linux 2.4 Embedix kernels, # i.e. openzaurus-sa-2.4.18 and openzaurus-pxa-2.4.18 - and don't forget # to rename the binaries as instructed in the Wiki. -# ASSUME_PROVIDED = "virtual/${TARGET_PREFIX}gcc virtual/libc" +# ASSUME_PROVIDED += "virtual/${TARGET_PREFIX}gcc virtual/libc" # Select between multiple alternative providers, if more than one is eligible. PREFERRED_PROVIDERS = "virtual/qte:qte virtual/libqpe:libqpe-opie" -- cgit v1.2.3 From db115b253784ae769abd99f8cbd659ff50e884fc Mon Sep 17 00:00:00 2001 From: Richard Purdie Date: Sat, 7 Jan 2006 23:09:07 +0000 Subject: ipkg-utils: Correct the dependencies and specifically set PACKAGES = for ipkg-utils-native. --- packages/ipkg-utils/ipkg-utils-native_1.6cvs.bb | 4 +++- packages/ipkg-utils/ipkg-utils_1.6cvs.bb | 1 - 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/packages/ipkg-utils/ipkg-utils-native_1.6cvs.bb b/packages/ipkg-utils/ipkg-utils-native_1.6cvs.bb index 2506dbab62..cd24007f02 100644 --- a/packages/ipkg-utils/ipkg-utils-native_1.6cvs.bb +++ b/packages/ipkg-utils/ipkg-utils-native_1.6cvs.bb @@ -2,7 +2,9 @@ SECTION = "base" include ipkg-utils_${PV}.bb PR = "r4" inherit native -DEPENDS = "" +RDEPENDS = "python-native" +# Avoid circular dependencies from package_ipk.bbclass +PACKAGES = "" do_stage() { for i in ${INSTALL}; do diff --git a/packages/ipkg-utils/ipkg-utils_1.6cvs.bb b/packages/ipkg-utils/ipkg-utils_1.6cvs.bb index 059ce8cb58..e315c82264 100644 --- a/packages/ipkg-utils/ipkg-utils_1.6cvs.bb +++ b/packages/ipkg-utils/ipkg-utils_1.6cvs.bb @@ -1,5 +1,4 @@ DESCRIPTION = "Itsy Package Manager utilities" -DEPENDS = "" SECTION = "base" PRIORITY = "optional" MAINTAINER = "Chris Larson " -- cgit v1.2.3 From 5a0a3d0fc64b0de84790b76655cdbe01b938bce0 Mon Sep 17 00:00:00 2001 From: Richard Purdie Date: Sat, 7 Jan 2006 23:13:10 +0000 Subject: image_ipk.bbclass: Set BUILD_ALL_DEPS = "1" for images in readyness of bitbake updates --- classes/image_ipk.bbclass | 3 +++ 1 file changed, 3 insertions(+) diff --git a/classes/image_ipk.bbclass b/classes/image_ipk.bbclass index 5fdd340673..f6af799e69 100644 --- a/classes/image_ipk.bbclass +++ b/classes/image_ipk.bbclass @@ -1,5 +1,8 @@ inherit rootfs_ipk +# We need to follow RDEPENDS and RRECOMMENDS for images +BUILD_ALL_DEPS = "1" + # Images are generally built explicitly, do not need to be part of world. EXCLUDE_FROM_WORLD = "1" -- cgit v1.2.3