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: 40631
This commit is contained in:
parent
9be00fc256
commit
27f8e4d857
1 changed files with 15 additions and 0 deletions
|
@ -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 a new issue