Browse Source

kernel: Adapt to move of autofs4 in kernel 4.19

autofs4 is now in the fs/autofs/ folder in kernel 4.19

Signed-off-by: Hauke Mehrtens <[email protected]>
Hauke Mehrtens 7 years ago
parent
commit
59065da634
1 changed files with 6 additions and 2 deletions
  1. 6 2
      package/kernel/linux/modules/fs.mk

+ 6 - 2
package/kernel/linux/modules/fs.mk

@@ -49,8 +49,12 @@ $(eval $(call KernelPackage,fs-afs))
 define KernelPackage/fs-autofs4
   SUBMENU:=$(FS_MENU)
   TITLE:=AUTOFS4 filesystem support
-  KCONFIG:=CONFIG_AUTOFS4_FS
-  FILES:=$(LINUX_DIR)/fs/autofs4/autofs4.ko
+  KCONFIG:= \
+	CONFIG_AUTOFS4_FS \
+	CONFIG_AUTOFS_FS
+  FILES:= \
+	$(LINUX_DIR)/fs/autofs4/[email protected] \
+	$(LINUX_DIR)/fs/autofs/[email protected]
   AUTOLOAD:=$(call AutoLoad,30,autofs4)
 endef