From: Chris Larson Date: Wed, 1 Dec 2004 10:17:52 +0000 (+0000) Subject: Use EXCLUDE_FROM_WORLD in native.oeclass, cross.oeclass, and image_ipk.oeclass. X-Git-Tag: Release-2010-05/1~15862 X-Git-Url: http://git.openpandora.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=7dc3e723562b528f4643a5cba2607f339becb0a5;p=openembedded.git Use EXCLUDE_FROM_WORLD in native.oeclass, cross.oeclass, and image_ipk.oeclass. BKrev: 41ad9a50ojh5lYMpR1q6iCNyth_GRA --- diff --git a/classes/cross.oeclass b/classes/cross.oeclass index 1418035102..6bdc5bf926 100644 --- a/classes/cross.oeclass +++ b/classes/cross.oeclass @@ -1,3 +1,7 @@ +# Cross packages are built indirectly via dependency, +# no need for them to be a direct target of 'world' +EXCLUDE_FROM_WORLD = "1" + PACKAGES = "" HOST_ARCH = "${BUILD_ARCH}" diff --git a/classes/image_ipk.oeclass b/classes/image_ipk.oeclass index c9c3980bb0..2ae3d5c632 100644 --- a/classes/image_ipk.oeclass +++ b/classes/image_ipk.oeclass @@ -1,5 +1,8 @@ inherit rootfs_ipk +# Images are generally built explicitly, do not need to be part of world. +EXCLUDE_FROM_WORLD = "1" + USE_DEVFS ?= "0" DEPENDS += "makedevs-native" diff --git a/classes/native.oeclass b/classes/native.oeclass index 49e70a5c94..93b2823b42 100644 --- a/classes/native.oeclass +++ b/classes/native.oeclass @@ -1,5 +1,9 @@ inherit base +# Native packages are built indirectly via dependency, +# no need for them to be a direct target of 'world' +EXCLUDE_FROM_WORLD = "1" + PACKAGES = "" TARGET_ARCH = "${BUILD_ARCH}"