diff options
author | Marcin Juszkiewicz <hrw@openedhand.com> | 2007-03-22 18:09:21 +0000 |
---|---|---|
committer | Marcin Juszkiewicz <hrw@openedhand.com> | 2007-03-22 18:09:21 +0000 |
commit | 6b86555e703297cba0431c8708efa2aacae5ce8c (patch) | |
tree | ca6840b2bcb58d5e76148984c26d8eddf9e573f0 | |
parent | 46e71442f3e564dfba12984a53e3a4ef2f41a93d (diff) | |
download | poky-6b86555e703297cba0431c8708efa2aacae5ce8c.tar.gz |
task-oh, poky.conf: added nfs-server feature for images
- task-oh-nfs-server contain all stuff to have NFS server on device
- 'nfs-server' IMAGE_FEATURE install it
git-svn-id: https://svn.o-hand.com/repos/poky/trunk@1384 311d38ba-8fff-0310-9ca6-ca027cbcb966
-rw-r--r-- | meta/conf/distro/poky.conf | 1 | ||||
-rw-r--r-- | meta/packages/tasks/task-oh.bb | 11 |
2 files changed, 10 insertions, 2 deletions
diff --git a/meta/conf/distro/poky.conf b/meta/conf/distro/poky.conf index 827414ff4c..9129186277 100644 --- a/meta/conf/distro/poky.conf +++ b/meta/conf/distro/poky.conf | |||
@@ -214,4 +214,5 @@ DISTRO_TASKS = "\ | |||
214 | ${@base_contains("IMAGE_FEATURES", "test-tools", "task-oh-testapps", "",d)} \ | 214 | ${@base_contains("IMAGE_FEATURES", "test-tools", "task-oh-testapps", "",d)} \ |
215 | ${@base_contains("IMAGE_FEATURES", ["test-tools", "dbg-pkgs"], "task-oh-testapps-dbg", "",d)} \ | 215 | ${@base_contains("IMAGE_FEATURES", ["test-tools", "dbg-pkgs"], "task-oh-testapps-dbg", "",d)} \ |
216 | ${@base_contains("IMAGE_FEATURES", ["test-tools", "dev-pkgs"], "task-oh-testapps-dev", "",d)} \ | 216 | ${@base_contains("IMAGE_FEATURES", ["test-tools", "dev-pkgs"], "task-oh-testapps-dev", "",d)} \ |
217 | ${@base_contains("IMAGE_FEATURES", "nfs-server", "task-oh-nfs-server", "",d)} \ | ||
217 | " | 218 | " |
diff --git a/meta/packages/tasks/task-oh.bb b/meta/packages/tasks/task-oh.bb index 304c2f2dad..1471cfb143 100644 --- a/meta/packages/tasks/task-oh.bb +++ b/meta/packages/tasks/task-oh.bb | |||
@@ -1,5 +1,5 @@ | |||
1 | DESCRIPTION = "Tasks for OpenedHand Poky" | 1 | DESCRIPTION = "Tasks for OpenedHand Poky" |
2 | PR = "r50" | 2 | PR = "r51" |
3 | 3 | ||
4 | PACKAGES = "\ | 4 | PACKAGES = "\ |
5 | task-oh-base \ | 5 | task-oh-base \ |
@@ -22,7 +22,8 @@ PACKAGES = "\ | |||
22 | task-oh-devtools-dev \ | 22 | task-oh-devtools-dev \ |
23 | task-oh-testapps \ | 23 | task-oh-testapps \ |
24 | task-oh-testapps-dbg \ | 24 | task-oh-testapps-dbg \ |
25 | task-oh-testapps-dev" | 25 | task-oh-testapps-dev \ |
26 | task-oh-nfs-server" | ||
26 | 27 | ||
27 | PACKAGE_ARCH = "${MACHINE_ARCH}" | 28 | PACKAGE_ARCH = "${MACHINE_ARCH}" |
28 | 29 | ||
@@ -125,6 +126,12 @@ RDEPENDS_task-oh-testapps = "\ | |||
125 | gst-meta-video \ | 126 | gst-meta-video \ |
126 | gst-meta-audio" | 127 | gst-meta-audio" |
127 | 128 | ||
129 | RDEPENDS_task-oh-nfs-server = "\ | ||
130 | nfs-utils" | ||
131 | |||
132 | # rpcinfo can be useful | ||
133 | RRECOMMENDS_task-oh-nfs-server = "\ | ||
134 | glibc-utils" | ||
128 | 135 | ||
129 | # minimo \ | 136 | # minimo \ |
130 | # teleport \ | 137 | # teleport \ |