mirror of https://github.com/hak5/openwrt-owl.git
kernel: Add kernel module for cramfs support.
This patch adds support for building support for cramfs filesystems as a kernel module. Signed-off-by: Owen Kirby <osk@exegin.com> SVN-Revision: 40631owl
parent
9be00fc256
commit
27f8e4d857
|
@ -121,6 +121,21 @@ endef
|
|||
|
||||
$(eval $(call KernelPackage,fs-configfs))
|
||||
|
||||
define KernelPackage/fs-cramfs
|
||||
SUBMENU:=$(FS_MENU)
|
||||
TITLE:=Compressed RAM/ROM filesystem support
|
||||
DEPENDS:=+kmod-lib-zlib
|
||||
KCONFIG:= \
|
||||
CONFIG_CRAMFS
|
||||
FILES:=$(LINUX_DIR)/fs/cramfs/cramfs.ko
|
||||
AUTOLOAD:=$(call AutoLoad,30,cramfs)
|
||||
endef
|
||||
|
||||
define KernelPackage/fs-cramfs/description
|
||||
Kernel module for cramfs support
|
||||
endef
|
||||
|
||||
$(eval $(call KernelPackage,fs-cramfs))
|
||||
|
||||
define KernelPackage/fs-exportfs
|
||||
SUBMENU:=$(FS_MENU)
|
||||
|
|
Loading…
Reference in New Issue