summaryrefslogtreecommitdiffstats
path: root/package/fuse
diff options
context:
space:
mode:
authorflorian <florian@3c298f89-4303-0410-b956-a3cf2f4a3e73>2007-01-05 15:36:58 +0000
committerflorian <florian@3c298f89-4303-0410-b956-a3cf2f4a3e73>2007-01-05 15:36:58 +0000
commit163c1d601394685223b43b750ca0ee1cf3f1f446 (patch)
tree1d0f0b1bc0be72fd979b073d8d7db6e976dd49ae /package/fuse
parentbbec1c7f78307b9ba021aecccc8f5bc34e9110cc (diff)
Use the KernelPackage template instead of kmod-foo
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@5995 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'package/fuse')
-rw-r--r--package/fuse/Makefile18
1 files changed, 4 insertions, 14 deletions
diff --git a/package/fuse/Makefile b/package/fuse/Makefile
index d310e92df..66c2455e6 100644
--- a/package/fuse/Makefile
+++ b/package/fuse/Makefile
@@ -41,15 +41,15 @@ define Package/fuse-utils
This package contains the FUSE utilities.
endef
-define Package/kmod-fuse
+define KernelPackage/fuse
+ SUBMENU:=Filesystems
$(call Package/fuse/Default)
- SECTION:=kernel
- CATEGORY:=Kernel drivers
TITLE+= (kernel module)
DESCRIPTION+=\\\
\\\
This package contains the FUSE kernel module.
VERSION:=$(LINUX_VERSION)+$(PKG_VERSION)-$(BOARD)-$(PKG_RELEASE)
+ FILES:=$(PKG_INSTALL_DIR)/lib/modules/$(LINUX_VERSION)/kernel/fs/fuse/fuse.$(LINUX_KMOD_SUFFIX)
endef
define Package/libfuse
@@ -134,21 +134,11 @@ define Package/fuse-utils/install
$(CP) $(PKG_INSTALL_DIR)/usr/bin/fusermount $(1)/usr/bin/
endef
-define Package/kmod-fuse/install
- $(INSTALL_DIR) $(1)/lib/modules/$(LINUX_VERSION)
- $(CP) $(PKG_INSTALL_DIR)/lib/modules/$(LINUX_VERSION)/kernel/fs/fuse/fuse.$(LINUX_KMOD_SUFFIX) \
- $(1)/lib/modules/$(LINUX_VERSION)/
- $(INSTALL_DIR) $(1)/usr/lib
- $(CP) $(PKG_INSTALL_DIR)/usr/lib/libfuse.so.* $(1)/usr/lib/
- $(INSTALL_DIR) $(1)/usr/bin
- $(CP) $(PKG_INSTALL_DIR)/usr/bin/fusermount $(1)/usr/bin/
-endef
-
define Package/libfuse/install
$(INSTALL_DIR) $(1)/usr/lib
$(CP) $(PKG_INSTALL_DIR)/usr/lib/libfuse.so.* $(1)/usr/lib/
endef
$(eval $(call BuildPackage,fuse-utils))
-$(eval $(call BuildPackage,kmod-fuse))
$(eval $(call BuildPackage,libfuse))
+$(eval $(call KernelPackage,fuse))