[openwrt/openwrt] kernel: modules: fs: add missing backslash
LEDE Commits
lede-commits at lists.infradead.org
Thu May 8 19:48:53 PDT 2025
dangole pushed a commit to openwrt/openwrt.git, branch main:
https://git.openwrt.org/76a18ddad8a46ccf40c3f88db4c940b4b55c7d12
commit 76a18ddad8a46ccf40c3f88db4c940b4b55c7d12
Author: Daniel Golle <daniel at makrotopia.org>
AuthorDate: Fri May 9 03:46:29 2025 +0100
kernel: modules: fs: add missing backslash
Commit 7db0748b7b ("kernel: modules: split package fs-fscache") modified
the KCONFIG section of KernelPackage/fs-netfs but missed to add a
backslash to escape a linebreak. Add it now.
Fixes: 7db0748b7b ("kernel: modules: split package fs-fscache")
Signed-off-by: Daniel Golle <daniel at makrotopia.org>
---
package/kernel/linux/modules/fs.mk | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/package/kernel/linux/modules/fs.mk b/package/kernel/linux/modules/fs.mk
index e7b59860b6..c71f0d9eb7 100644
--- a/package/kernel/linux/modules/fs.mk
+++ b/package/kernel/linux/modules/fs.mk
@@ -429,7 +429,7 @@ $(eval $(call KernelPackage,fs-msdos))
define KernelPackage/fs-netfs
SUBMENU:=$(FS_MENU)
TITLE:=Network Filesystems support
- KCONFIG:=
+ KCONFIG:= \
CONFIG_NETFS_SUPPORT \
CONFIG_FSCACHE=y at ge6.12 \
CONFIG_FSCACHE_STATS=y at ge6.12
More information about the lede-commits
mailing list