Changeset 4d96d89 in freewrt
- Timestamp:
- Jul 7, 2007, 7:24:19 PM (18 years ago)
- Children:
- 93702e5
- Parents:
- d7eca6f
- Location:
- package
- Files:
-
- 1 added
- 1 deleted
- 5 edited
- 1 moved
-
Config.in (modified) (1 diff)
-
Makefile (modified) (1 diff)
-
nfs-server/Config.in (deleted)
-
nfs-utils/Config.in (modified) (1 diff)
-
nfs-utils/Makefile (modified) (2 diffs)
-
nfs-utils/ipkg/nfs-kernel-nfsd.control (added)
-
nfs-utils/ipkg/nfs-kernel-nfsd.postinst (moved) (moved from package/nfs-utils/ipkg/nfs-utils.postinst )
-
nfs-utils/ipkg/nfs-utils.control (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
package/Config.in
rd7eca6f r4d96d89 150 150 source "package/netperf/Config.in" 151 151 source "package/netstat-nat/Config.in" 152 153 menu "nfs............................... Network Filesystem Support" 152 154 source "package/nfs-utils/Config.in" 153 source "package/nfs-server/Config.in" 155 156 choice 157 optional 158 prompt "NFS server support" 159 default n 160 161 config FWRT_PACKAGE_NFS_SERVER 162 prompt "User Space NFS server" 163 tristate 164 help 165 This package contains all necessary programs to make your Linux machine 166 act as an NFS server, being an NFS daemon (rpc.nfsd), a mount daemon (rpc.mountd). 167 Unlike other NFS daemons, this NFS server runs entirely in user space. This 168 makes it a tad slower than other NFS implementations, and also introduces some 169 awkwardnesses in the semantics (for instance, moving a file to a different 170 directory will render its file handle invalid). There is currently no support 171 for file locking. 172 173 config FWRT_PACKAGE_NFS_KERNEL_NFSD 174 prompt "Kernel Space NFS server" 175 tristate 176 select FWRT_KPACKAGE_KMOD_NFSD 177 select FWRT_KPACKAGE_KMOD_NFS_FS 178 help 179 NFS kernel server utilities. You only can export attached 180 USB storage, like a disk or a memory stick. 181 endchoice 182 endmenu 183 154 184 source "package/nmap/Config.in" 155 185 source "package/nocatsplash/Config.in" -
package/Makefile
rd7eca6f r4d96d89 213 213 package-$(FWRT_PACKAGE_NETSTAT_NAT) += netstat-nat 214 214 package-$(FWRT_PACKAGE_NFS_UTILS) += nfs-utils 215 package-$(FWRT_PACKAGE_NFS_KERNEL_NFSD) += nfs-utils 215 216 package-$(FWRT_PACKAGE_NFS_SERVER) += nfs-server 216 217 package-$(FWRT_PACKAGE_NMAP) += nmap -
package/nfs-utils/Config.in
rd7eca6f r4d96d89 1 1 config FWRT_PACKAGE_NFS_UTILS 2 prompt "nfs-utils......................... NFS kernelserver utilities"2 prompt "nfs-utils......................... NFS server utilities" 3 3 tristate 4 4 default n 5 select FWRT_PACKAGE_PORTMAP6 select FWRT_KPACKAGE_KMOD_NFSD7 select FWRT_KPACKAGE_KMOD_NFS_FS8 5 help 9 NFS kernel server utilities. You only can export attached10 USB storage, like a disk or a memory stick. 6 NFS server utilities (namely, exportfs). If unsure, say 'yes'. 7 -
package/nfs-utils/Makefile
rd7eca6f r4d96d89 16 16 17 17 $(eval $(call PKG_template,NFS_UTILS,nfs-utils,${PKG_VERSION}-${PKG_RELEASE},${ARCH})) 18 $(eval $(call PKG_template,NFS_KERNEL_NFSD,nfs-kernel-nfsd,${PKG_VERSION}-${PKG_RELEASE},${ARCH})) 18 19 19 20 CONFIGURE_STYLE= gnu … … 25 26 TCPPFLAGS+= -I${LINUX_DIR}/include 26 27 27 post-install: 28 ${INSTALL_DIR} ${IDIR_NFS_UTILS}/etc 29 ${INSTALL_DATA} ./files/nfsd.exports ${IDIR_NFS_UTILS}/etc/exports 30 ${INSTALL_DIR} ${IDIR_NFS_UTILS}/etc/init.d 31 ${INSTALL_BIN} ./files/nfsd.init \ 32 ${IDIR_NFS_UTILS}/etc/init.d/knfsd 28 NFS_INSTALL_PKG_${FWRT_PACKAGE_NFS_UTILS}+= install-utils 29 NFS_INSTALL_PKG_${FWRT_PACKAGE_NFS_KERNEL_NFSD}+= install-server 30 31 post-install: ${NFS_INSTALL_PKG_y} ${NFS_INSTALL_PKG_m} 32 33 install-utils: 33 34 ${INSTALL_DIR} ${IDIR_NFS_UTILS}/usr/sbin 34 ${INSTALL_BIN} ${WRKBUILD}/utils/lockd/lockd ${IDIR_NFS_UTILS}/usr/sbin/35 ${INSTALL_BIN} ${WRKBUILD}/utils/statd/statd ${IDIR_NFS_UTILS}/usr/sbin/36 ${INSTALL_BIN} ${WRKBUILD}/utils/nfsd/nfsd ${IDIR_NFS_UTILS}/usr/sbin/37 ${INSTALL_BIN} ${WRKBUILD}/utils/mountd/mountd ${IDIR_NFS_UTILS}/usr/sbin/38 35 ${INSTALL_BIN} ${WRKBUILD}/utils/exportfs/exportfs ${IDIR_NFS_UTILS}/usr/sbin/ 39 36 37 install-server: 38 ${INSTALL_DIR} ${IDIR_NFS_KERNEL_NFSD}/etc/init.d 39 ${INSTALL_DIR} ${IDIR_NFS_KERNEL_NFSD}/usr/sbin 40 ${INSTALL_BIN} ./files/nfsd.init \ 41 ${IDIR_NFS_KERNEL_NFSD}/etc/init.d/knfsd 42 ${INSTALL_DATA} ./files/nfsd.exports ${IDIR_NFS_KERNEL_NFSD}/etc/exports 43 ${INSTALL_BIN} ${WRKBUILD}/utils/lockd/lockd ${IDIR_NFS_KERNEL_NFSD}/usr/sbin/ 44 ${INSTALL_BIN} ${WRKBUILD}/utils/statd/statd ${IDIR_NFS_KERNEL_NFSD}/usr/sbin/ 45 ${INSTALL_BIN} ${WRKBUILD}/utils/nfsd/nfsd ${IDIR_NFS_KERNEL_NFSD}/usr/sbin/ 46 ${INSTALL_BIN} ${WRKBUILD}/utils/mountd/mountd ${IDIR_NFS_KERNEL_NFSD}/usr/sbin/ 47 40 48 include ${TOPDIR}/mk/pkg-bottom.mk -
package/nfs-utils/ipkg/nfs-utils.control
rd7eca6f r4d96d89 2 2 Section: net 3 3 Priority: optional 4 Depends: portmap, kmod-fs-nfs, kmod-fs-nfsd4 Depends: 5 5 Description: Utilities for NFS kernel server
Note:
See TracChangeset
for help on using the changeset viewer.
