1
0
mirror of git://projects.qi-hardware.com/openwrt-xburst.git synced 2025-04-21 12:27:27 +03:00

Enable iso9660 and udf kernel modules (#930)

git-svn-id: svn://svn.openwrt.org/openwrt/trunk@5485 3c298f89-4303-0410-b956-a3cf2f4a3e73
This commit is contained in:
florian
2006-11-09 18:53:23 +00:00
parent 2c4d27ff3b
commit ca00145059
12 changed files with 85 additions and 22 deletions

View File

@@ -53,6 +53,28 @@ define KernelPackage/fs-hfsplus
endef
$(eval $(call KernelPackage,fs-hfsplus))
define KernelPackage/fs-isofs
TITLE:=ISO9660 filesystem support
DESCRIPTION:=Kernel module for ISO9660 filesystem support
DEPENDS:=+kmod-nls-base
KCONFIG:=$(CONFIG_ISO9660_FS)
SUBMENU:=$(FSMENU)
AUTOLOAD:=$(call AutoLoad,30,isofs)
FILES:=$(MODULES_DIR)/kernel/fs/isofs/isofs.$(LINUX_KMOD_SUFFIX)
endef
$(eval $(call KernelPackage,fs-isofs))
define KernelPackage/fs-udf
TITLE:=UDF filesystem support
DESCRIPTION:=Kernel module for UDF filesystem support
DEPENDS:=+kmod-nls-base
KCONFIG:=$(CONFIG_UDF_FS)
SUBMENU:=$(FSMENU)
AUTOLOAD:=$(call AutoLoad,30,udf)
FILES:=$(MODULES_DIR)/kernel/fs/udf/udf.$(LINUX_KMOD_SUFFIX)
endef
$(eval $(call KernelPackage,fs-udf))
define KernelPackage/fs-nfs
TITLE:=NFS filesystem support
DESCRIPTION:=Kernel module for NFS support