mirror of
https://git.yoctoproject.org/poky
synced 2026-02-13 04:03:03 +01:00
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>
29 lines
660 B
BlitzBasic
29 lines
660 B
BlitzBasic
#
|
|
# 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}"
|
|
|