blob: 5c7f45562afb46335158e6a65dae8e0e76b81725 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
|
#
# Copyright (C) 2008 OpenedHand Ltd.
#
DESCRIPTION = "NFS tasks for Poky"
LICENSE = "MIT"
LIC_FILES_CHKSUM = "file://${COREBASE}/LICENSE;md5=3f40d7994397109285ec7b81fdeb3b58 \
file://${COREBASE}/meta/COPYING.MIT;md5=3da9cfbcb788c80a0384361b4de20420"
PR = "r1"
PACKAGES = "\
task-core-nfs-server \
task-core-nfs-server-dbg \
task-core-nfs-server-dev \
"
ALLOW_EMPTY = "1"
RDEPENDS_task-core-nfs-server = "\
nfs-utils \
nfs-utils-client \
"
# rpcinfo can be useful but only with glibc images
GLIBC_DEPENDENCIES = "glibc-utils"
RRECOMMENDS_task-core-nfs-server_append_libc-glibc = " ${GLIBC_DEPENDENCIES}"
|