xref: /OK3568_Linux_fs/yocto/poky/meta/recipes-connectivity/nfs-utils/nfs-utils_2.6.1.bb (revision 4882a59341e53eb6f0b4789bf948001014eff981)
1SUMMARY = "userspace utilities for kernel nfs"
2DESCRIPTION = "The nfs-utils package provides a daemon for the kernel \
3NFS server and related tools."
4HOMEPAGE = "http://nfs.sourceforge.net/"
5SECTION = "console/network"
6
7LICENSE = "MIT & GPL-2.0-or-later & BSD-3-Clause"
8LIC_FILES_CHKSUM = "file://COPYING;md5=95f3a93a5c3c7888de623b46ea085a84"
9
10# util-linux for libblkid
11DEPENDS = "libcap libevent util-linux sqlite3 libtirpc"
12RDEPENDS:${PN} = "${PN}-client"
13RRECOMMENDS:${PN} = "kernel-module-nfsd"
14
15inherit useradd
16
17USERADD_PACKAGES = "${PN}-client"
18USERADD_PARAM:${PN}-client = "--system  --home-dir /var/lib/nfs \
19			      --shell /bin/false --user-group rpcuser"
20
21SRC_URI = "${KERNELORG_MIRROR}/linux/utils/nfs-utils/${PV}/nfs-utils-${PV}.tar.xz \
22           file://nfsserver \
23           file://nfscommon \
24           file://nfs-utils.conf \
25           file://nfs-server.service \
26           file://nfs-mountd.service \
27           file://nfs-statd.service \
28           file://proc-fs-nfsd.mount \
29           file://nfs-utils-debianize-start-statd.patch \
30           file://bugfix-adjust-statd-service-name.patch \
31           file://0001-Makefile.am-fix-undefined-function-for-libnsm.a.patch \
32           file://clang-warnings.patch \
33           "
34SRC_URI[sha256sum] = "60dfcd94a9f3d72a12bc7058d811787ec87a6d593d70da2123faf9aad3d7a1df"
35
36# Only kernel-module-nfsd is required here (but can be built-in)  - the nfsd module will
37# pull in the remainder of the dependencies.
38
39INITSCRIPT_PACKAGES = "${PN} ${PN}-client"
40INITSCRIPT_NAME = "nfsserver"
41INITSCRIPT_PARAMS = "defaults"
42INITSCRIPT_NAME:${PN}-client = "nfscommon"
43INITSCRIPT_PARAMS:${PN}-client = "defaults 19 21"
44
45inherit autotools-brokensep update-rc.d systemd pkgconfig
46
47SYSTEMD_PACKAGES = "${PN} ${PN}-client"
48SYSTEMD_SERVICE:${PN} = "nfs-server.service nfs-mountd.service"
49SYSTEMD_SERVICE:${PN}-client = "nfs-statd.service"
50
51# --enable-uuid is need for cross-compiling
52EXTRA_OECONF = "--with-statduser=rpcuser \
53                --enable-mountconfig \
54                --enable-libmount-mount \
55                --enable-uuid \
56                --disable-gss \
57                --disable-nfsdcltrack \
58                --with-statdpath=/var/lib/nfs/statd \
59                --with-rpcgen=${HOSTTOOLS_DIR}/rpcgen \
60               "
61
62PACKAGECONFIG ??= "tcp-wrappers \
63    ${@bb.utils.filter('DISTRO_FEATURES', 'ipv6', d)} \
64"
65PACKAGECONFIG:remove:libc-musl = "tcp-wrappers"
66PACKAGECONFIG[tcp-wrappers] = "--with-tcp-wrappers,--without-tcp-wrappers,tcp-wrappers"
67PACKAGECONFIG[ipv6] = "--enable-ipv6,--disable-ipv6,"
68# libdevmapper is available in meta-oe
69PACKAGECONFIG[nfsv41] = "--enable-nfsv41,--disable-nfsv41,libdevmapper,libdevmapper"
70# keyutils is available in meta-oe
71PACKAGECONFIG[nfsv4] = "--enable-nfsv4,--disable-nfsv4,keyutils,python3-core"
72
73PACKAGES =+ "${PN}-client ${PN}-mount ${PN}-stats"
74
75CONFFILES:${PN}-client += "${localstatedir}/lib/nfs/etab \
76			   ${localstatedir}/lib/nfs/rmtab \
77			   ${localstatedir}/lib/nfs/xtab \
78			   ${localstatedir}/lib/nfs/statd/state \
79			   ${sysconfdir}/nfsmount.conf"
80
81FILES:${PN}-client = "${sbindir}/*statd \
82		      ${sbindir}/rpc.idmapd ${sbindir}/sm-notify \
83		      ${sbindir}/showmount ${sbindir}/nfsstat \
84		      ${localstatedir}/lib/nfs \
85		      ${sysconfdir}/nfs-utils.conf \
86		      ${sysconfdir}/nfsmount.conf \
87		      ${sysconfdir}/init.d/nfscommon \
88		      ${systemd_system_unitdir}/nfs-statd.service"
89RDEPENDS:${PN}-client = "${PN}-mount rpcbind"
90
91FILES:${PN}-mount = "${base_sbindir}/*mount.nfs*"
92
93FILES:${PN}-stats = "${sbindir}/mountstats ${sbindir}/nfsiostat ${sbindir}/nfsdclnts"
94RDEPENDS:${PN}-stats = "python3-core"
95
96FILES:${PN}-staticdev += "${libdir}/libnfsidmap/*.a"
97
98FILES:${PN} += "${systemd_unitdir} ${libdir}/libnfsidmap/"
99
100do_configure:prepend() {
101	sed -i -e 's,sbindir = /sbin,sbindir = ${base_sbindir},g' \
102		${S}/utils/mount/Makefile.am
103}
104
105# Make clean needed because the package comes with
106# precompiled 64-bit objects that break the build
107do_compile:prepend() {
108	make clean
109}
110
111# Works on systemd only
112HIGH_RLIMIT_NOFILE ??= "4096"
113
114do_install:append () {
115	install -d ${D}${sysconfdir}/init.d
116	install -m 0755 ${WORKDIR}/nfsserver ${D}${sysconfdir}/init.d/nfsserver
117	install -m 0755 ${WORKDIR}/nfscommon ${D}${sysconfdir}/init.d/nfscommon
118
119	install -m 0755 ${WORKDIR}/nfs-utils.conf ${D}${sysconfdir}
120	install -m 0755 ${S}/utils/mount/nfsmount.conf ${D}${sysconfdir}
121
122	install -d ${D}${systemd_system_unitdir}
123	install -m 0644 ${WORKDIR}/nfs-server.service ${D}${systemd_system_unitdir}/
124	install -m 0644 ${WORKDIR}/nfs-mountd.service ${D}${systemd_system_unitdir}/
125	install -m 0644 ${WORKDIR}/nfs-statd.service ${D}${systemd_system_unitdir}/
126	sed -i -e 's,@SBINDIR@,${sbindir},g' \
127		-e 's,@SYSCONFDIR@,${sysconfdir},g' \
128		-e 's,@HIGH_RLIMIT_NOFILE@,${HIGH_RLIMIT_NOFILE},g' \
129		${D}${systemd_system_unitdir}/*.service
130	if ${@bb.utils.contains('DISTRO_FEATURES','systemd','true','false',d)}; then
131		install -m 0644 ${WORKDIR}/proc-fs-nfsd.mount ${D}${systemd_system_unitdir}/
132		install -d ${D}${systemd_system_unitdir}/sysinit.target.wants/
133		ln -sf ../proc-fs-nfsd.mount ${D}${systemd_system_unitdir}/sysinit.target.wants/proc-fs-nfsd.mount
134	fi
135
136	# kernel code as of 3.8 hard-codes this path as a default
137	install -d ${D}/var/lib/nfs/v4recovery
138
139	# chown the directories and files
140	chown -R rpcuser:rpcuser ${D}${localstatedir}/lib/nfs/statd
141	chmod 0644 ${D}${localstatedir}/lib/nfs/statd/state
142
143	# Make python tools use python 3
144	sed -i -e '1s,#!.*python.*,#!${bindir}/python3,' ${D}${sbindir}/mountstats ${D}${sbindir}/nfsiostat
145}
146