diff options
author | John Crispin <john@openwrt.org> | 2009-10-04 14:01:17 +0000 |
---|---|---|
committer | John Crispin <john@openwrt.org> | 2009-10-04 14:01:17 +0000 |
commit | 047eb61a560cbc2741a3cac0ab7fd0b7ff14aaf8 (patch) | |
tree | 281662bf55f7ca00010e9a1da1c22dda5a6b504e /package/mountd | |
parent | 2d25bf04c90c975163ff4b262fea1659b6879284 (diff) | |
download | upstream-047eb61a560cbc2741a3cac0ab7fd0b7ff14aaf8.tar.gz upstream-047eb61a560cbc2741a3cac0ab7fd0b7ff14aaf8.tar.bz2 upstream-047eb61a560cbc2741a3cac0ab7fd0b7ff14aaf8.zip |
adds mountd. There is still much space for improvement, static mounts and fstab are not supported yet
SVN-Revision: 17853
Diffstat (limited to 'package/mountd')
-rw-r--r-- | package/mountd/Makefile | 43 | ||||
-rw-r--r-- | package/mountd/files/mountd.config | 3 | ||||
-rwxr-xr-x | package/mountd/files/mountd.init | 12 |
3 files changed, 58 insertions, 0 deletions
diff --git a/package/mountd/Makefile b/package/mountd/Makefile new file mode 100644 index 0000000000..5463384a0a --- /dev/null +++ b/package/mountd/Makefile @@ -0,0 +1,43 @@ +# Copyright (C) 2009 OpenWrt.org +# All rights reserved. + +include $(TOPDIR)/rules.mk + +PKG_NAME:=mountd +PKG_VERSION:=0.1 +PKG_RELEASE:=1 + +PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.bz2 +PKG_SOURCE_URL:=http://mirror2.openwrt.org/sources +PKG_MD5SUM:=b77253ee4321d24d200fffc4f7ca3d15 + +include $(INCLUDE_DIR)/package.mk + +define Package/mountd + SECTION:=utils + CATEGORY:=Utilities + TITLE:=OpenWrt automount daemon + DEPENDS:=@USB_SUPPORT +uci +kmod-usb-storage +kmod-fs-autofs4 + URL:=http://www.openwrt.org +endef + +define Package/mountd/description + openwrt automount daemon +endef + +define Build/Compile + $(TARGET_CONFIGURE_OPTS) \ + CFLAGS="$(TARGET_CFLAGS) -I$(STAGING_DIR)/usr/include -I$(PKG_BUILD_DIR)" \ + LDFLAGS="$(TARGET_LDFLAGS)" \ + $(MAKE) -C $(PKG_BUILD_DIR) +endef + +define Package/mountd/install + $(INSTALL_DIR) $(1)/sbin/ $(1)/etc/config/ $(1)/etc/init.d/ + $(INSTALL_BIN) $(PKG_BUILD_DIR)/mountd $(1)/sbin/ + $(INSTALL_BIN) ./files/mountd.config $(1)/etc/config/mountd + $(INSTALL_DATA) ./files/mountd.init $(1)/etc/init.d/mountd +endef + +$(eval $(call BuildPackage,mountd)) + diff --git a/package/mountd/files/mountd.config b/package/mountd/files/mountd.config new file mode 100644 index 0000000000..5610129501 --- /dev/null +++ b/package/mountd/files/mountd.config @@ -0,0 +1,3 @@ +config mountd mountd + option timeout 60 + option path /tmp/mounts/ diff --git a/package/mountd/files/mountd.init b/package/mountd/files/mountd.init new file mode 100755 index 0000000000..b861b5dda4 --- /dev/null +++ b/package/mountd/files/mountd.init @@ -0,0 +1,12 @@ +#!/bin/sh /etc/rc.common +START=80 + +start() +{ + /sbin/mountd +} + +stop() +{ + killall mountd +} |