image.bbclass: Revert some changes as bitbake can't seem to cope with them :-(

git-svn-id: https://svn.o-hand.com/repos/poky/trunk@2661 311d38ba-8fff-0310-9ca6-ca027cbcb966
This commit is contained in:
Richard Purdie 2007-09-02 23:24:51 +00:00
parent 3adf5ea1d9
commit 903bd14738
1 changed files with 5 additions and 2 deletions

View File

@ -4,8 +4,11 @@ LICENSE = "MIT"
PACKAGES = ""
RDEPENDS += "${IMAGE_INSTALL}"
export IMAGE_BASENAME ?= "${PN}"
export PACKAGE_INSTALL ?= "${IMAGE_INSTALL}"
#bitbake doesn't seem to cope with this :-(
#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"