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> git-svn-id: svn://svn.openwrt.org/openwrt/trunk@40631 3c298f89-4303-0410-b956-a3cf2f4a3e73master
parent
753f19a85e
commit
468604e758
|
@ -121,6 +121,21 @@ endef
|
||||||
|
|
||||||
$(eval $(call KernelPackage,fs-configfs))
|
$(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
|
define KernelPackage/fs-exportfs
|
||||||
SUBMENU:=$(FS_MENU)
|
SUBMENU:=$(FS_MENU)
|
||||||
|
|
Loading…
Reference in New Issue