summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPavlo Samko2025-03-14 17:39:31 +0000
committerHauke Mehrtens2025-08-24 17:45:27 +0000
commit2b5119e355d9b59181626479f6aa4ef6405690bf (patch)
treec24b7521eff4e6dc5d4ca27637a39e7b9c2d72df
parent69a8c7f71a3fd69a4ef853d340dac3d8bee05490 (diff)
downloadopenwrt-2b5119e355d9b59181626479f6aa4ef6405690bf.tar.gz
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>
-rw-r--r--package/kernel/linux/modules/fs.mk16
1 files changed, 16 insertions, 0 deletions
diff --git a/package/kernel/linux/modules/fs.mk b/package/kernel/linux/modules/fs.mk
index d818b21d99..32114024e7 100644
--- a/package/kernel/linux/modules/fs.mk
+++ b/package/kernel/linux/modules/fs.mk
@@ -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