package/kernel: Enable XATTR by default
OpenWrt enables XATTR support pretty much universally, therefore for filesystems that a loaded as modules also enable XATTR support so that there are no unexpected missing capabilities. Signed-off-by: Daniel Dickinson <lede@daniel.thecshore.com>
This commit is contained in:
parent
d635ef50c5
commit
3ee278c5c9
1 changed files with 3 additions and 1 deletions
|
@ -85,6 +85,7 @@ define KernelPackage/fs-cifs
|
|||
TITLE:=CIFS support
|
||||
KCONFIG:= \
|
||||
CONFIG_CIFS \
|
||||
CONFIG_CIFS_XATTR=y \
|
||||
CONFIG_CIFS_DFS_UPCALL=n \
|
||||
CONFIG_CIFS_UPCALL=n
|
||||
FILES:=$(LINUX_DIR)/fs/cifs/cifs.ko
|
||||
|
@ -387,7 +388,8 @@ $(eval $(call KernelPackage,fs-ntfs))
|
|||
define KernelPackage/fs-reiserfs
|
||||
SUBMENU:=$(FS_MENU)
|
||||
TITLE:=ReiserFS filesystem support
|
||||
KCONFIG:=CONFIG_REISERFS_FS
|
||||
KCONFIG:=CONFIG_REISERFS_FS \
|
||||
CONFIG_REISERFS_FS_XATTR=y
|
||||
FILES:=$(LINUX_DIR)/fs/reiserfs/reiserfs.ko
|
||||
AUTOLOAD:=$(call AutoLoad,30,reiserfs,1)
|
||||
endef
|
||||
|
|
Loading…
Reference in a new issue