diff options
author | Khem Raj <raj.khem@gmail.com> | 2011-12-09 19:30:46 +0000 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2011-12-12 21:50:21 +0000 |
commit | 976443267b0938942c25b83d55156133e8f9bca8 (patch) | |
tree | 7eb15c1fa6388e46d7be3d47e555b0306d9ca180 /meta | |
parent | 023368f4006e7fe94a2b0490ed1467b367b9ae28 (diff) | |
download | poky-976443267b0938942c25b83d55156133e8f9bca8.tar.gz |
task-core-nfs: Add nfs-utils-client to RDEPENDS
include nfs client in tast-core-nfs as well
this is handy when we need it on target e.g.
testing eglibc needs it and we can just do
EXTRA_IMAGE_FEATURES += "nfs-server"
(From OE-Core rev: c09c6e61991b30c99d68fa6c2e5639d490a65e89)
Signed-off-by: Khem Raj <raj.khem@gmail.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta')
-rw-r--r-- | meta/recipes-core/tasks/task-core-nfs.bb | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/meta/recipes-core/tasks/task-core-nfs.bb b/meta/recipes-core/tasks/task-core-nfs.bb index 5859fad071..5c7f45562a 100644 --- a/meta/recipes-core/tasks/task-core-nfs.bb +++ b/meta/recipes-core/tasks/task-core-nfs.bb | |||
@@ -6,7 +6,7 @@ DESCRIPTION = "NFS tasks for Poky" | |||
6 | LICENSE = "MIT" | 6 | LICENSE = "MIT" |
7 | LIC_FILES_CHKSUM = "file://${COREBASE}/LICENSE;md5=3f40d7994397109285ec7b81fdeb3b58 \ | 7 | LIC_FILES_CHKSUM = "file://${COREBASE}/LICENSE;md5=3f40d7994397109285ec7b81fdeb3b58 \ |
8 | file://${COREBASE}/meta/COPYING.MIT;md5=3da9cfbcb788c80a0384361b4de20420" | 8 | file://${COREBASE}/meta/COPYING.MIT;md5=3da9cfbcb788c80a0384361b4de20420" |
9 | PR = "r0" | 9 | PR = "r1" |
10 | 10 | ||
11 | PACKAGES = "\ | 11 | PACKAGES = "\ |
12 | task-core-nfs-server \ | 12 | task-core-nfs-server \ |
@@ -17,7 +17,9 @@ PACKAGES = "\ | |||
17 | ALLOW_EMPTY = "1" | 17 | ALLOW_EMPTY = "1" |
18 | 18 | ||
19 | RDEPENDS_task-core-nfs-server = "\ | 19 | RDEPENDS_task-core-nfs-server = "\ |
20 | nfs-utils" | 20 | nfs-utils \ |
21 | nfs-utils-client \ | ||
22 | " | ||
21 | 23 | ||
22 | # rpcinfo can be useful but only with glibc images | 24 | # rpcinfo can be useful but only with glibc images |
23 | GLIBC_DEPENDENCIES = "glibc-utils" | 25 | GLIBC_DEPENDENCIES = "glibc-utils" |