1
0
Fork 0
forked from mirror/openwrt

kernel: add NILFS2 fs module

NILFS is a log-structured file system developed for Linux.
NILFS provides versioning capability of an entire file system
and continuous snapshotting that allows users to restore files
mistakenly overwritten or destroyed a while ago.

Signed-off-by: Pavlo Samko <bulldozerbsg@gmail.com>
Link: https://github.com/openwrt/openwrt/pull/18247
Signed-off-by: Hauke Mehrtens <hauke@hauke-m.de>
This commit is contained in:
Pavlo Samko 2025-03-14 19:39:31 +02:00 committed by Hauke Mehrtens
parent 69a8c7f71a
commit 2b5119e355

View file

@ -440,6 +440,22 @@ endef
$(eval $(call KernelPackage,fs-netfs))
define KernelPackage/fs-nilfs2
SUBMENU:=$(FS_MENU)
TITLE:=NILFS2 filesystem support
KCONFIG:=CONFIG_NILFS2_FS
FILES:=$(LINUX_DIR)/fs/nilfs2/nilfs2.ko
AUTOLOAD:=$(call AutoLoad,30,nilfs2)
$(call AddDepends/nls)
endef
define KernelPackage/fs-nilfs2/description
Kernel module for NILFS2 filesystem support
endef
$(eval $(call KernelPackage,fs-nilfs2))
define KernelPackage/fs-nfs
SUBMENU:=$(FS_MENU)
TITLE:=NFS filesystem client support