2006-06-27 03:35:46 +03:00
|
|
|
#
|
|
|
|
# Copyright (C) 2006 OpenWrt.org
|
|
|
|
#
|
|
|
|
# This is free software, licensed under the GNU General Public License v2.
|
|
|
|
# See /LICENSE for more information.
|
|
|
|
#
|
2005-05-28 12:17:29 +03:00
|
|
|
# $Id$
|
|
|
|
|
|
|
|
include $(TOPDIR)/rules.mk
|
2006-06-21 05:32:39 +03:00
|
|
|
include $(INCLUDE_DIR)/kernel.mk
|
2005-05-28 12:17:29 +03:00
|
|
|
|
2005-10-23 16:18:28 +03:00
|
|
|
PKG_NAME:=shfs
|
|
|
|
PKG_VERSION:=0.35
|
|
|
|
PKG_RELEASE:=2
|
2005-05-28 12:17:29 +03:00
|
|
|
|
2005-10-23 16:18:28 +03:00
|
|
|
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
|
2006-09-23 16:42:29 +03:00
|
|
|
PKG_SOURCE_URL:=@SF/shfs
|
|
|
|
PKG_MD5SUM:=016f49d71bc32eee2b5d11fc1600cfbe
|
2005-05-28 12:17:29 +03:00
|
|
|
|
2006-06-21 05:32:39 +03:00
|
|
|
include $(INCLUDE_DIR)/package.mk
|
2005-05-28 12:17:29 +03:00
|
|
|
|
2006-09-23 16:42:29 +03:00
|
|
|
define Package/shfs/Default
|
|
|
|
TITLE:=ShFS
|
|
|
|
DESCRIPTION:=\
|
|
|
|
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/
|
|
|
|
endef
|
|
|
|
|
2007-01-05 22:36:06 +02:00
|
|
|
define KernelPackage/shfs
|
2006-09-23 16:42:29 +03:00
|
|
|
$(call Package/shfs/Default)
|
|
|
|
TITLE+= (kernel module)
|
|
|
|
DESCRIPTION+=\\\
|
|
|
|
\\\
|
|
|
|
This package contains the ShFS kernel module.
|
2007-01-05 22:36:06 +02:00
|
|
|
FILES:=$(PKG_INSTALL_DIR)/lib/modules/$(LINUX_VERSION)/kernel/fs/shfs/shfs.$(LINUX_KMOD_SUFFIX)
|
2007-01-08 11:52:32 +02:00
|
|
|
SUBMENU:=Filesystems
|
2006-09-23 16:42:29 +03:00
|
|
|
VERSION:=$(LINUX_VERSION)+$(PKG_VERSION)-$(BOARD)-$(PKG_RELEASE)
|
2007-01-05 22:36:06 +02:00
|
|
|
AUTOLOAD:=$(call AutoLoad,40,shfs)
|
2006-09-23 16:42:29 +03:00
|
|
|
endef
|
|
|
|
|
|
|
|
define Package/shfs-utils
|
|
|
|
$(call Package/shfs/Default)
|
|
|
|
SECTION:=utils
|
|
|
|
CATEGORY:=Utilities
|
2006-12-15 20:27:31 +02:00
|
|
|
DEPENDS+=+kmod-shfs
|
2006-09-23 16:42:29 +03:00
|
|
|
TITLE+= (utilities)
|
|
|
|
DESCRIPTION+=\\\
|
|
|
|
\\\
|
|
|
|
This package contains the ShFS utilities.
|
2006-06-17 12:43:57 +03:00
|
|
|
endef
|
|
|
|
|
|
|
|
define Build/Compile
|
2005-05-28 12:17:29 +03:00
|
|
|
$(MAKE) -C $(PKG_BUILD_DIR) \
|
2005-08-18 11:13:53 +03:00
|
|
|
ARCH="$(LINUX_KARCH)" \
|
2005-11-02 04:42:06 +02:00
|
|
|
CROSS_COMPILE="$(TARGET_CROSS)" \
|
2005-05-28 12:17:29 +03:00
|
|
|
OFLAGS="$(TARGET_CFLAGS)" \
|
|
|
|
CC="$(TARGET_CC)" \
|
|
|
|
LINKER="$(TARGET_CC)" \
|
|
|
|
KERNEL="$(LINUX_VERSION)" \
|
2006-01-10 21:43:00 +02:00
|
|
|
KERNEL_SOURCES="$(LINUX_DIR)" \
|
2005-05-28 12:17:29 +03:00
|
|
|
ROOT="$(PKG_INSTALL_DIR)" \
|
|
|
|
module module-install
|
2006-09-23 16:42:29 +03:00
|
|
|
$(MAKE) -C $(PKG_BUILD_DIR) \
|
|
|
|
OFLAGS="$(TARGET_CFLAGS)" \
|
|
|
|
CC="$(TARGET_CC)" \
|
|
|
|
LINKER="$(TARGET_CC)" \
|
|
|
|
KERNEL_SOURCES="$(LINUX_DIR)" \
|
|
|
|
ROOT="$(PKG_INSTALL_DIR)" \
|
|
|
|
utils utils-install
|
2006-06-17 12:43:57 +03:00
|
|
|
endef
|
2005-05-28 12:17:29 +03:00
|
|
|
|
2006-09-23 16:42:29 +03:00
|
|
|
define Package/shfs-utils/install
|
2006-11-23 02:29:07 +02:00
|
|
|
$(INSTALL_DIR) $(1)/usr/bin
|
2006-09-23 16:42:29 +03:00
|
|
|
$(CP) $(PKG_INSTALL_DIR)/usr/bin/shfs{,u}mount $(1)/usr/bin/
|
2006-11-23 02:29:07 +02:00
|
|
|
$(INSTALL_DIR) $(1)/sbin
|
2006-09-23 16:42:29 +03:00
|
|
|
$(CP) $(PKG_INSTALL_DIR)/sbin/mount.shfs $(1)/sbin/
|
|
|
|
endef
|
|
|
|
|
2007-01-05 22:36:06 +02:00
|
|
|
$(eval $(call KernelPackage,shfs))
|
2006-09-23 16:42:29 +03:00
|
|
|
$(eval $(call BuildPackage,shfs-utils))
|