move shfs from target/linux/package/ to package/.
git-svn-id: svn://svn.openwrt.org/openwrt/branches/buildroot-ng/openwrt@3970 3c298f89-4303-0410-b956-a3cf2f4a3e73master
parent
94e6eb2645
commit
faed1635d8
|
@ -1,7 +1,7 @@
|
||||||
# $Id$
|
# $Id$
|
||||||
|
|
||||||
include $(TOPDIR)/rules.mk
|
include $(TOPDIR)/rules.mk
|
||||||
include ../../rules.mk
|
include $(TOPDIR)/package/kernel.mk
|
||||||
|
|
||||||
PKG_NAME:=shfs
|
PKG_NAME:=shfs
|
||||||
PKG_VERSION:=0.35
|
PKG_VERSION:=0.35
|
||||||
|
@ -17,12 +17,21 @@ PKG_INSTALL_DIR:=$(PKG_BUILD_DIR)/ipkg-install
|
||||||
|
|
||||||
include $(TOPDIR)/package/rules.mk
|
include $(TOPDIR)/package/rules.mk
|
||||||
|
|
||||||
$(eval $(call PKG_template,KMOD_SHFS,kmod-shfs,$(LINUX_VERSION)+$(PKG_VERSION)-$(BOARD)-$(PKG_RELEASE),$(ARCH),kernel ($(LINUX_VERSION)-$(BOARD)-$(LINUX_RELEASE))))
|
define Package/kmod-shfs
|
||||||
|
SECTION:=drivers
|
||||||
|
CATEGORY:=Drivers
|
||||||
|
DEPENDS:=
|
||||||
|
TITLE:=Shell FileSystem (ShFS)
|
||||||
|
DESCRIPTION:=Shell FileSystem (ShFS) \\\
|
||||||
|
ShFS is a simple and easy to use Linux kernel module which allows you to \\\
|
||||||
|
mount remote filesystems using a plain shell (SSH) connection. When using \\\
|
||||||
|
ShFS, you can access all remote files just like the local ones, only the \\\
|
||||||
|
access is governed through the transport security of SSH.
|
||||||
|
URL:=http://shfs.sourceforge.net/
|
||||||
|
VERSION:=$(LINUX_VERSION)+$(PKG_VERSION)-$(BOARD)-$(PKG_RELEASE)
|
||||||
|
endef
|
||||||
|
|
||||||
$(PKG_BUILD_DIR)/.configured:
|
define Build/Compile
|
||||||
touch $@
|
|
||||||
|
|
||||||
$(PKG_BUILD_DIR)/.built:
|
|
||||||
rm -rf $(PKG_INSTALL_DIR)
|
rm -rf $(PKG_INSTALL_DIR)
|
||||||
mkdir -p $(PKG_INSTALL_DIR)
|
mkdir -p $(PKG_INSTALL_DIR)
|
||||||
$(MAKE) -C $(PKG_BUILD_DIR) \
|
$(MAKE) -C $(PKG_BUILD_DIR) \
|
||||||
|
@ -36,11 +45,12 @@ $(PKG_BUILD_DIR)/.built:
|
||||||
KERNEL_SOURCES="$(LINUX_DIR)" \
|
KERNEL_SOURCES="$(LINUX_DIR)" \
|
||||||
ROOT="$(PKG_INSTALL_DIR)" \
|
ROOT="$(PKG_INSTALL_DIR)" \
|
||||||
module module-install
|
module module-install
|
||||||
touch $@
|
endef
|
||||||
|
|
||||||
$(IPKG_KMOD_SHFS):
|
define Package/kmod-shfs/install
|
||||||
install -m0755 -d $(IDIR_KMOD_SHFS)/lib/modules/$(LINUX_VERSION)
|
install -m0755 -d $(1)/lib/modules/$(LINUX_VERSION)
|
||||||
$(CP) $(PKG_INSTALL_DIR)/lib/modules/$(LINUX_VERSION)/kernel/fs/shfs/shfs.$(LINUX_KMOD_SUFFIX) \
|
$(CP) $(PKG_INSTALL_DIR)/lib/modules/$(LINUX_VERSION)/kernel/fs/shfs/shfs.$(LINUX_KMOD_SUFFIX) \
|
||||||
$(IDIR_KMOD_SHFS)/lib/modules/$(LINUX_VERSION)/
|
$(1)/lib/modules/$(LINUX_VERSION)/
|
||||||
$(IPKG_BUILD) $(IDIR_KMOD_SHFS) $(PACKAGE_DIR)
|
endef
|
||||||
|
|
||||||
|
$(eval $(call BuildPackage,kmod-shfs))
|
|
@ -1,22 +0,0 @@
|
||||||
config PACKAGE_KMOD_SHFS
|
|
||||||
prompt "kmod-shfs......................... Shell FileSystem kernel module (ShFS) kernel module"
|
|
||||||
tristate
|
|
||||||
default m if DEVEL
|
|
||||||
help
|
|
||||||
ShFS is a simple and easy to use Linux kernel module which
|
|
||||||
allows you to mount remote filesystems using a plain shell
|
|
||||||
(SSH) connection. When using ShFS, you can access all remote
|
|
||||||
files just like the local ones, only the access is governed
|
|
||||||
through the transport security of SSH.
|
|
||||||
|
|
||||||
ShFS supports some nice features:
|
|
||||||
|
|
||||||
* file cache for access speedup
|
|
||||||
* perl and shell code for the remote (server) side
|
|
||||||
* could preserve uid/gid (root connection)
|
|
||||||
* number of remote host platforms (Linux, Solaris, Cygwin, ...)
|
|
||||||
* Linux kernel 2.4.10+ and 2.6
|
|
||||||
* arbitrary command used for connection (instead of SSH)
|
|
||||||
* persistent connection (reconnect after SSH dies)
|
|
||||||
|
|
||||||
http://shfs.sourceforge.net/
|
|
|
@ -1,4 +0,0 @@
|
||||||
Package: kmod-shfs
|
|
||||||
Priority: optional
|
|
||||||
Section: sys
|
|
||||||
Description: SHell FileSystem Linux kernel module
|
|
Loading…
Reference in New Issue