diff options
Diffstat (limited to 'meta/packages/images/poky-image.inc')
-rw-r--r-- | meta/packages/images/poky-image.inc | 43 |
1 files changed, 43 insertions, 0 deletions
diff --git a/meta/packages/images/poky-image.inc b/meta/packages/images/poky-image.inc new file mode 100644 index 0000000000..6f1bed9760 --- /dev/null +++ b/meta/packages/images/poky-image.inc | |||
@@ -0,0 +1,43 @@ | |||
1 | # Common for Poky images | ||
2 | # | ||
3 | # Copyright (C) 2007 OpenedHand LTD | ||
4 | |||
5 | # IMAGE_FEATURES control content of images built with Poky. | ||
6 | # | ||
7 | # By default we install task-oh-boot and task-oh-boot-extras packages - this | ||
8 | # gives us working (console only) rootfs. | ||
9 | # | ||
10 | # "apps-core", "apps-pda" and other tasks are defined in task-oh recipe and have | ||
11 | # to add needed packages for selected task. | ||
12 | # | ||
13 | |||
14 | DISTRO_TASKS += '\ | ||
15 | ${@base_contains("IMAGE_FEATURES", "dbg-pkgs", "task-oh-boot-dbg task-oh-boot-extras-dbg", "",d)} \ | ||
16 | ${@base_contains("IMAGE_FEATURES", "dev-pkgs", "task-oh-boot-dev task-oh-boot-extras-dev", "",d)} \ | ||
17 | \ | ||
18 | ${@base_contains("IMAGE_FEATURES", "apps-core", "task-oh-base", "",d)} \ | ||
19 | ${@base_contains("IMAGE_FEATURES", ["apps-core", "dbg-pkgs"], "task-oh-base-dbg", "",d)} \ | ||
20 | ${@base_contains("IMAGE_FEATURES", ["apps-core", "dev-pkgs"], "task-oh-base-dev", "",d)} \ | ||
21 | \ | ||
22 | ${@base_contains("IMAGE_FEATURES", "apps-pda", "task-oh-standard", "",d)} \ | ||
23 | ${@base_contains("IMAGE_FEATURES", ["apps-pda", "dbg-pkgs"], "task-oh-standard-dbg", "",d)} \ | ||
24 | ${@base_contains("IMAGE_FEATURES", ["apps-pda", "dev-pkgs"], "task-oh-standard-dev", "",d)} \ | ||
25 | \ | ||
26 | ${@base_contains("IMAGE_FEATURES", "dev-tools", "task-oh-sdk", "",d)} \ | ||
27 | ${@base_contains("IMAGE_FEATURES", ["dev-tools", "dbg-pkgs"], "task-oh-sdk-dbg", "",d)} \ | ||
28 | ${@base_contains("IMAGE_FEATURES", ["dev-tools", "dev-pkgs"], "task-oh-sdk-dev", "",d)} \ | ||
29 | \ | ||
30 | ${@base_contains("IMAGE_FEATURES", "dbg-tools", "task-oh-devtools", "",d)} \ | ||
31 | ${@base_contains("IMAGE_FEATURES", ["dbg-tools", "dbg-pkgs"], "task-oh-devtools-dbg", "",d)} \ | ||
32 | ${@base_contains("IMAGE_FEATURES", ["dbg-tools", "dev-pkgs"], "task-oh-devtools-dev", "",d)} \ | ||
33 | \ | ||
34 | ${@base_contains("IMAGE_FEATURES", "test-tools", "task-oh-testapps", "",d)} \ | ||
35 | ${@base_contains("IMAGE_FEATURES", ["test-tools", "dbg-pkgs"], "task-oh-testapps-dbg", "",d)} \ | ||
36 | ${@base_contains("IMAGE_FEATURES", ["test-tools", "dev-pkgs"], "task-oh-testapps-dev", "",d)} \ | ||
37 | \ | ||
38 | ${@base_contains("IMAGE_FEATURES", "nfs-server", "task-oh-nfs-server", "",d)} \ | ||
39 | ' | ||
40 | |||
41 | IMAGE_INSTALL ?= "${DISTRO_TASKS}" | ||
42 | |||
43 | inherit image | ||