From: Richard Purdie Date: Sun, 2 Sep 2007 09:47:41 +0000 (+0000) Subject: image.bbclass: Allow partial backwards compatibility X-Git-Tag: 2011-1~10773 X-Git-Url: https://code.ossystems.io/gitweb?a=commitdiff_plain;h=47ea9ba7123790f95d535d657809a6027fd400e4;p=openembedded-core.git image.bbclass: Allow partial backwards compatibility git-svn-id: https://svn.o-hand.com/repos/poky/trunk@2646 311d38ba-8fff-0310-9ca6-ca027cbcb966 --- diff --git a/meta/classes/image.bbclass b/meta/classes/image.bbclass index 40402921cf..04e26e4b35 100644 --- a/meta/classes/image.bbclass +++ b/meta/classes/image.bbclass @@ -2,10 +2,10 @@ inherit rootfs_${IMAGE_PKGTYPE} LICENSE = "MIT" PACKAGES = "" -RDEPENDS = "${IMAGE_INSTALL}" +RDEPENDS += "${IMAGE_INSTALL}" -export IMAGE_BASENAME = "${PN}" -export PACKAGE_INSTALL = "${IMAGE_INSTALL}" +export IMAGE_BASENAME ?= "${PN}" +export PACKAGE_INSTALL ?= "${IMAGE_INSTALL}" # We need to recursively follow RDEPENDS and RRECOMMENDS for images do_rootfs[recrdeptask] += "do_deploy do_populate_staging"