diff options
author | Richard Purdie <richard@openedhand.com> | 2007-09-02 23:24:51 +0000 |
---|---|---|
committer | Richard Purdie <richard@openedhand.com> | 2007-09-02 23:24:51 +0000 |
commit | 903bd14738c0418eedc4c930028db9ffdd86d6a9 (patch) | |
tree | e5cee3d01acd3e908b40e64c7ea9c8e7f3bf1e68 /meta/classes/image.bbclass | |
parent | 3adf5ea1d9498bd043dcbd9fa4413e5567d059cb (diff) | |
download | poky-903bd14738c0418eedc4c930028db9ffdd86d6a9.tar.gz |
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
Diffstat (limited to 'meta/classes/image.bbclass')
-rw-r--r-- | meta/classes/image.bbclass | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/meta/classes/image.bbclass b/meta/classes/image.bbclass index ead1708d5b..5c672f19bc 100644 --- a/meta/classes/image.bbclass +++ b/meta/classes/image.bbclass | |||
@@ -4,8 +4,11 @@ LICENSE = "MIT" | |||
4 | PACKAGES = "" | 4 | PACKAGES = "" |
5 | RDEPENDS += "${IMAGE_INSTALL}" | 5 | RDEPENDS += "${IMAGE_INSTALL}" |
6 | 6 | ||
7 | export IMAGE_BASENAME ?= "${PN}" | 7 | #bitbake doesn't seem to cope with this :-( |
8 | export PACKAGE_INSTALL ?= "${IMAGE_INSTALL}" | 8 | #export IMAGE_BASENAME ?= "${PN}" |
9 | #export PACKAGE_INSTALL ?= "${IMAGE_INSTALL}" | ||
10 | export IMAGE_BASENAME = "${PN}" | ||
11 | export PACKAGE_INSTALL = "${IMAGE_INSTALL}" | ||
9 | 12 | ||
10 | # We need to recursively follow RDEPENDS and RRECOMMENDS for images | 13 | # We need to recursively follow RDEPENDS and RRECOMMENDS for images |
11 | do_rootfs[recrdeptask] += "do_deploy do_populate_staging" | 14 | do_rootfs[recrdeptask] += "do_deploy do_populate_staging" |