diff options
author | Richard Purdie <richard@openedhand.com> | 2007-09-05 07:51:46 +0000 |
---|---|---|
committer | Richard Purdie <richard@openedhand.com> | 2007-09-05 07:51:46 +0000 |
commit | c518632b24e0a05d7e8c417bcf615793b66c5ec4 (patch) | |
tree | bec61b9ac776b0a2af583a1b5f5e9b5dd19e24e3 | |
parent | f2f97b7c1597a4c482c788bf540f9a1ac441108f (diff) | |
download | openembedded-core-c518632b24e0a05d7e8c417bcf615793b66c5ec4.tar.gz openembedded-core-c518632b24e0a05d7e8c417bcf615793b66c5ec4.tar.bz2 openembedded-core-c518632b24e0a05d7e8c417bcf615793b66c5ec4.zip |
image.bbclass: Fix IMAGE_BASENAME and PACKAGE_INSTALL variables
git-svn-id: https://svn.o-hand.com/repos/poky/trunk@2691 311d38ba-8fff-0310-9ca6-ca027cbcb966
-rw-r--r-- | meta/classes/image.bbclass | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/meta/classes/image.bbclass b/meta/classes/image.bbclass index 5c672f19bc..fde0f59993 100644 --- a/meta/classes/image.bbclass +++ b/meta/classes/image.bbclass @@ -4,11 +4,9 @@ LICENSE = "MIT" PACKAGES = "" RDEPENDS += "${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}" +# "export IMAGE_BASENAME" not supported at this time +IMAGE_BASENAME[export] = 1 +export PACKAGE_INSTALL ?= "${IMAGE_INSTALL}" # We need to recursively follow RDEPENDS and RRECOMMENDS for images do_rootfs[recrdeptask] += "do_deploy do_populate_staging" |