diff options
author | Richard Purdie <richard@openedhand.com> | 2008-05-20 14:58:34 +0000 |
---|---|---|
committer | Richard Purdie <richard@openedhand.com> | 2008-05-20 14:58:34 +0000 |
commit | bfe8092d3b82939eed9955b58df32274b61f5447 (patch) | |
tree | 9a9d61700de25763a549f991a4677294c9fc7c4b /meta/classes/poky-image.bbclass | |
parent | 03c0969ef80acf0cf3a3d1d3485df61081fafc1b (diff) | |
download | poky-bfe8092d3b82939eed9955b58df32274b61f5447.tar.gz |
poky-image.bbclass: Correctly handle inserting package-managers into images by making it an image feature
git-svn-id: https://svn.o-hand.com/repos/poky/trunk@4517 311d38ba-8fff-0310-9ca6-ca027cbcb966
Diffstat (limited to 'meta/classes/poky-image.bbclass')
-rw-r--r-- | meta/classes/poky-image.bbclass | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/meta/classes/poky-image.bbclass b/meta/classes/poky-image.bbclass index 41d5527960..8f7daa3ae2 100644 --- a/meta/classes/poky-image.bbclass +++ b/meta/classes/poky-image.bbclass | |||
@@ -73,12 +73,14 @@ POKY_BASE_INSTALL = '\ | |||
73 | ${@base_contains("IMAGE_FEATURES", "nfs-server", "task-poky-nfs-server", "",d)} \ | 73 | ${@base_contains("IMAGE_FEATURES", "nfs-server", "task-poky-nfs-server", "",d)} \ |
74 | ${@base_contains("IMAGE_FEATURES", ["nfs-server", "dbg-pkgs"], "task-poky-nfs-server-dbg", "",d)} \ | 74 | ${@base_contains("IMAGE_FEATURES", ["nfs-server", "dbg-pkgs"], "task-poky-nfs-server-dbg", "",d)} \ |
75 | ${@base_contains("IMAGE_FEATURES", ["nfs-server", "dev-pkgs"], "task-poky-nfs-server-dev", "",d)} \ | 75 | ${@base_contains("IMAGE_FEATURES", ["nfs-server", "dev-pkgs"], "task-poky-nfs-server-dev", "",d)} \ |
76 | \ | ||
77 | ${@base_contains("IMAGE_FEATURES", "package-management", "${ROOTFS_PKGMANAGE}", "",d)} \ | ||
76 | ' | 78 | ' |
77 | 79 | ||
78 | IMAGE_INSTALL ?= "${POKY_BASE_INSTALL}" | 80 | IMAGE_INSTALL ?= "${POKY_BASE_INSTALL}" |
79 | 81 | ||
80 | X11_IMAGE_FEATURES = "x11-base apps-x11-core" | 82 | X11_IMAGE_FEATURES = "x11-base apps-x11-core package-management" |
81 | SATO_IMAGE_FEATURES = "${X11_IMAGE_FEATURES} apps-x11-sato apps-x11-games apps-x11-pimlico" | 83 | SATO_IMAGE_FEATURES = "${X11_IMAGE_FEATURES} apps-x11-sato apps-x11-games apps-x11-pimlico package-management" |
82 | 84 | ||
83 | inherit image | 85 | inherit image |
84 | 86 | ||