fs.mk 13 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598
  1. #
  2. # Copyright (C) 2006-2011 OpenWrt.org
  3. #
  4. # This is free software, licensed under the GNU General Public License v2.
  5. # See /LICENSE for more information.
  6. #
  7. FS_MENU:=Filesystems
  8. define KernelPackage/fs-9p
  9. SUBMENU:=$(FS_MENU)
  10. TITLE:=Plan 9 Resource Sharing Support
  11. DEPENDS:=+kmod-9pnet
  12. KCONFIG:=\
  13. CONFIG_9P_FS \
  14. CONFIG_9P_FS_POSIX_ACL=n \
  15. CONFIG_9P_FS_SECURITY=n \
  16. CONFIG_9P_FSCACHE=n
  17. FILES:=$(LINUX_DIR)/fs/9p/9p.ko
  18. AUTOLOAD:=$(call AutoLoad,30,9p)
  19. endef
  20. define KernelPackage/fs-9p/description
  21. Kernel module for Plan 9 Resource Sharing Support support
  22. endef
  23. $(eval $(call KernelPackage,fs-9p))
  24. define KernelPackage/fs-afs
  25. SUBMENU:=$(FS_MENU)
  26. TITLE:=Andrew FileSystem client
  27. DEFAULT:=n
  28. DEPENDS:=+kmod-rxrpc +kmod-dnsresolver +kmod-fs-fscache
  29. KCONFIG:=\
  30. CONFIG_AFS_FS=m \
  31. CONFIG_AFS_DEBUG=n \
  32. CONFIG_AFS_FSCACHE=y
  33. FILES:=$(LINUX_DIR)/fs/afs/kafs.ko
  34. AUTOLOAD:=$(call AutoLoad,30,kafs)
  35. endef
  36. define KernelPackage/fs-afs/description
  37. Kernel module for Andrew FileSystem client support
  38. endef
  39. $(eval $(call KernelPackage,fs-afs))
  40. define KernelPackage/fs-autofs4
  41. SUBMENU:=$(FS_MENU)
  42. TITLE:=AUTOFS4 filesystem support
  43. KCONFIG:= \
  44. CONFIG_AUTOFS4_FS \
  45. CONFIG_AUTOFS_FS
  46. FILES:= \
  47. $(LINUX_DIR)/fs/autofs/autofs4.ko
  48. AUTOLOAD:=$(call AutoLoad,30,autofs4)
  49. endef
  50. define KernelPackage/fs-autofs4/description
  51. Kernel module for AutoFS4 support
  52. endef
  53. $(eval $(call KernelPackage,fs-autofs4))
  54. define KernelPackage/fs-btrfs
  55. SUBMENU:=$(FS_MENU)
  56. TITLE:=BTRFS filesystem support
  57. DEPENDS:=+kmod-lib-crc32c +kmod-lib-lzo +kmod-lib-zlib-inflate +kmod-lib-zlib-deflate +kmod-lib-raid6 +kmod-lib-xor +kmod-lib-zstd
  58. KCONFIG:=\
  59. CONFIG_BTRFS_FS \
  60. CONFIG_BTRFS_FS_POSIX_ACL=n \
  61. CONFIG_BTRFS_FS_CHECK_INTEGRITY=n
  62. FILES:=\
  63. $(LINUX_DIR)/fs/btrfs/btrfs.ko
  64. AUTOLOAD:=$(call AutoLoad,30,btrfs,1)
  65. endef
  66. define KernelPackage/fs-btrfs/description
  67. Kernel module for BTRFS support
  68. endef
  69. $(eval $(call KernelPackage,fs-btrfs))
  70. define KernelPackage/fs-cifs
  71. SUBMENU:=$(FS_MENU)
  72. TITLE:=CIFS support
  73. KCONFIG:= \
  74. CONFIG_CIFS \
  75. CONFIG_CIFS_DFS_UPCALL=n \
  76. CONFIG_CIFS_UPCALL=n
  77. FILES:=$(LINUX_DIR)/fs/cifs/cifs.ko
  78. AUTOLOAD:=$(call AutoLoad,30,cifs)
  79. $(call AddDepends/nls)
  80. DEPENDS+= \
  81. +kmod-crypto-md4 \
  82. +kmod-crypto-md5 \
  83. +kmod-crypto-sha256 \
  84. +kmod-crypto-sha512 \
  85. +kmod-crypto-cmac \
  86. +kmod-crypto-hmac \
  87. +kmod-crypto-arc4 \
  88. +kmod-crypto-aead \
  89. +kmod-crypto-ccm \
  90. +kmod-crypto-ecb \
  91. +kmod-crypto-des
  92. endef
  93. define KernelPackage/fs-cifs/description
  94. Kernel module for CIFS support
  95. endef
  96. $(eval $(call KernelPackage,fs-cifs))
  97. define KernelPackage/fs-configfs
  98. SUBMENU:=$(FS_MENU)
  99. TITLE:=Configuration filesystem support
  100. KCONFIG:= \
  101. CONFIG_CONFIGFS_FS
  102. FILES:=$(LINUX_DIR)/fs/configfs/configfs.ko
  103. AUTOLOAD:=$(call AutoLoad,30,configfs)
  104. endef
  105. define KernelPackage/fs-configfs/description
  106. Kernel module for configfs support
  107. endef
  108. $(eval $(call KernelPackage,fs-configfs))
  109. define KernelPackage/fs-cramfs
  110. SUBMENU:=$(FS_MENU)
  111. TITLE:=Compressed RAM/ROM filesystem support
  112. DEPENDS:=+kmod-lib-zlib-inflate
  113. KCONFIG:= \
  114. CONFIG_CRAMFS
  115. FILES:=$(LINUX_DIR)/fs/cramfs/cramfs.ko
  116. AUTOLOAD:=$(call AutoLoad,30,cramfs)
  117. endef
  118. define KernelPackage/fs-cramfs/description
  119. Kernel module for cramfs support
  120. endef
  121. $(eval $(call KernelPackage,fs-cramfs))
  122. define KernelPackage/fs-efivarfs
  123. SUBMENU:=$(FS_MENU)
  124. TITLE:=efivar filesystem support
  125. KCONFIG:=CONFIG_EFIVAR_FS
  126. FILES:=$(LINUX_DIR)/fs/efivarfs/efivarfs.ko
  127. DEPENDS:=@(x86_64||x86)
  128. AUTOLOAD:=$(call Autoload,90,efivarfs)
  129. endef
  130. define KernelPackage/fs-efivarfs/description
  131. Kernel module to support efivarfs file system mountpoint.
  132. endef
  133. $(eval $(call KernelPackage,fs-efivarfs))
  134. define KernelPackage/fs-exfat
  135. SUBMENU:=$(FS_MENU)
  136. TITLE:=exFAT filesystem support
  137. KCONFIG:= \
  138. CONFIG_EXFAT_FS \
  139. CONFIG_EXFAT_DEFAULT_IOCHARSET="utf8"
  140. FILES:= \
  141. $(LINUX_DIR)/drivers/staging/exfat/[email protected] \
  142. $(LINUX_DIR)/fs/exfat/[email protected]
  143. AUTOLOAD:=$(call AutoLoad,30,exfat,1)
  144. DEPENDS:=+kmod-nls-base
  145. endef
  146. define KernelPackage/fs-exfat/description
  147. Kernel module for exFAT filesystem support
  148. endef
  149. $(eval $(call KernelPackage,fs-exfat))
  150. define KernelPackage/fs-exportfs
  151. SUBMENU:=$(FS_MENU)
  152. TITLE:=exportfs kernel server support
  153. KCONFIG:=CONFIG_EXPORTFS
  154. FILES=$(LINUX_DIR)/fs/exportfs/exportfs.ko
  155. AUTOLOAD:=$(call AutoLoad,20,exportfs,1)
  156. endef
  157. define KernelPackage/fs-exportfs/description
  158. Kernel module for exportfs. Needed for some other modules.
  159. endef
  160. $(eval $(call KernelPackage,fs-exportfs))
  161. define KernelPackage/fs-ext4
  162. SUBMENU:=$(FS_MENU)
  163. TITLE:=EXT4 filesystem support
  164. DEPENDS := \
  165. +kmod-lib-crc16 \
  166. +kmod-crypto-hash \
  167. +kmod-crypto-crc32c
  168. KCONFIG:= \
  169. CONFIG_EXT4_FS \
  170. CONFIG_EXT4_ENCRYPTION=n \
  171. CONFIG_JBD2
  172. FILES:= \
  173. $(LINUX_DIR)/fs/ext4/ext4.ko \
  174. $(LINUX_DIR)/fs/jbd2/jbd2.ko \
  175. $(LINUX_DIR)/fs/mbcache.ko
  176. AUTOLOAD:=$(call AutoLoad,30,mbcache jbd2 ext4,1)
  177. endef
  178. define KernelPackage/fs-ext4/description
  179. Kernel module for EXT4 filesystem support
  180. endef
  181. $(eval $(call KernelPackage,fs-ext4))
  182. define KernelPackage/fs-f2fs
  183. SUBMENU:=$(FS_MENU)
  184. TITLE:=F2FS filesystem support
  185. DEPENDS:= +kmod-crypto-hash +kmod-crypto-crc32 +kmod-nls-base
  186. KCONFIG:=CONFIG_F2FS_FS
  187. FILES:=$(LINUX_DIR)/fs/f2fs/f2fs.ko
  188. AUTOLOAD:=$(call AutoLoad,30,f2fs,1)
  189. endef
  190. define KernelPackage/fs-f2fs/description
  191. Kernel module for F2FS filesystem support
  192. endef
  193. $(eval $(call KernelPackage,fs-f2fs))
  194. define KernelPackage/fs-fscache
  195. SUBMENU:=$(FS_MENU)
  196. TITLE:=General filesystem local cache manager
  197. DEPENDS:=
  198. KCONFIG:=\
  199. CONFIG_FSCACHE=m \
  200. CONFIG_FSCACHE_STATS=y \
  201. CONFIG_FSCACHE_HISTOGRAM=n \
  202. CONFIG_FSCACHE_DEBUG=n \
  203. CONFIG_FSCACHE_OBJECT_LIST=n \
  204. CONFIG_CACHEFILES=y \
  205. CONFIG_CACHEFILES_DEBUG=n \
  206. CONFIG_CACHEFILES_HISTOGRAM=n
  207. FILES:=$(LINUX_DIR)/fs/fscache/fscache.ko
  208. AUTOLOAD:=$(call AutoLoad,29,fscache)
  209. endef
  210. $(eval $(call KernelPackage,fs-fscache))
  211. define KernelPackage/fs-hfs
  212. SUBMENU:=$(FS_MENU)
  213. TITLE:=HFS filesystem support
  214. DEPENDS:=+kmod-cdrom
  215. KCONFIG:=CONFIG_HFS_FS
  216. FILES:=$(LINUX_DIR)/fs/hfs/hfs.ko
  217. AUTOLOAD:=$(call AutoLoad,30,hfs)
  218. $(call AddDepends/nls)
  219. endef
  220. define KernelPackage/fs-hfs/description
  221. Kernel module for HFS filesystem support
  222. endef
  223. $(eval $(call KernelPackage,fs-hfs))
  224. define KernelPackage/fs-hfsplus
  225. SUBMENU:=$(FS_MENU)
  226. TITLE:=HFS+ filesystem support
  227. DEPENDS:=+kmod-cdrom
  228. KCONFIG:=CONFIG_HFSPLUS_FS
  229. FILES:=$(LINUX_DIR)/fs/hfsplus/hfsplus.ko
  230. AUTOLOAD:=$(call AutoLoad,30,hfsplus)
  231. $(call AddDepends/nls,utf8)
  232. endef
  233. define KernelPackage/fs-hfsplus/description
  234. Kernel module for HFS+ filesystem support
  235. endef
  236. $(eval $(call KernelPackage,fs-hfsplus))
  237. define KernelPackage/fs-isofs
  238. SUBMENU:=$(FS_MENU)
  239. TITLE:=ISO9660 filesystem support
  240. DEPENDS:=+kmod-lib-zlib-inflate +kmod-cdrom
  241. KCONFIG:=CONFIG_ISO9660_FS CONFIG_JOLIET=y CONFIG_ZISOFS=n
  242. FILES:=$(LINUX_DIR)/fs/isofs/isofs.ko
  243. AUTOLOAD:=$(call AutoLoad,30,isofs)
  244. $(call AddDepends/nls)
  245. endef
  246. define KernelPackage/fs-isofs/description
  247. Kernel module for ISO9660 filesystem support
  248. endef
  249. $(eval $(call KernelPackage,fs-isofs))
  250. define KernelPackage/fs-jfs
  251. SUBMENU:=$(FS_MENU)
  252. TITLE:=JFS filesystem support
  253. KCONFIG:=CONFIG_JFS_FS
  254. FILES:=$(LINUX_DIR)/fs/jfs/jfs.ko
  255. AUTOLOAD:=$(call AutoLoad,30,jfs,1)
  256. $(call AddDepends/nls)
  257. endef
  258. define KernelPackage/fs-jfs/description
  259. Kernel module for JFS support
  260. endef
  261. $(eval $(call KernelPackage,fs-jfs))
  262. define KernelPackage/fs-minix
  263. SUBMENU:=$(FS_MENU)
  264. TITLE:=Minix filesystem support
  265. KCONFIG:=CONFIG_MINIX_FS
  266. FILES:=$(LINUX_DIR)/fs/minix/minix.ko
  267. AUTOLOAD:=$(call AutoLoad,30,minix)
  268. endef
  269. define KernelPackage/fs-minix/description
  270. Kernel module for Minix filesystem support
  271. endef
  272. $(eval $(call KernelPackage,fs-minix))
  273. define KernelPackage/fs-msdos
  274. SUBMENU:=$(FS_MENU)
  275. TITLE:=MSDOS filesystem support
  276. DEPENDS:=+kmod-fs-vfat
  277. KCONFIG:=CONFIG_MSDOS_FS
  278. FILES:=$(LINUX_DIR)/fs/fat/msdos.ko
  279. AUTOLOAD:=$(call AutoLoad,40,msdos)
  280. $(call AddDepends/nls)
  281. endef
  282. define KernelPackage/fs-msdos/description
  283. Kernel module for MSDOS filesystem support
  284. endef
  285. $(eval $(call KernelPackage,fs-msdos))
  286. define KernelPackage/fs-nfs
  287. SUBMENU:=$(FS_MENU)
  288. TITLE:=NFS filesystem client support
  289. DEPENDS:=+kmod-fs-nfs-common +kmod-dnsresolver
  290. KCONFIG:= \
  291. CONFIG_NFS_FS \
  292. CONFIG_NFS_USE_LEGACY_DNS=n \
  293. CONFIG_NFS_USE_NEW_IDMAPPER=n
  294. FILES:= \
  295. $(LINUX_DIR)/fs/nfs/nfs.ko
  296. AUTOLOAD:=$(call AutoLoad,40,nfs)
  297. endef
  298. define KernelPackage/fs-nfs/description
  299. Kernel module for NFS client support
  300. endef
  301. $(eval $(call KernelPackage,fs-nfs))
  302. define KernelPackage/fs-nfs-common
  303. SUBMENU:=$(FS_MENU)
  304. TITLE:=Common NFS filesystem modules
  305. KCONFIG:= \
  306. CONFIG_LOCKD \
  307. CONFIG_SUNRPC \
  308. CONFIG_GRACE_PERIOD
  309. FILES:= \
  310. $(LINUX_DIR)/fs/lockd/lockd.ko \
  311. $(LINUX_DIR)/net/sunrpc/sunrpc.ko \
  312. $(LINUX_DIR)/fs/nfs_common/grace.ko \
  313. $(LINUX_DIR)/fs/nfs_common/[email protected]
  314. AUTOLOAD:=$(call AutoLoad,30,grace sunrpc lockd)
  315. endef
  316. $(eval $(call KernelPackage,fs-nfs-common))
  317. define KernelPackage/fs-nfs-common-rpcsec
  318. SUBMENU:=$(FS_MENU)
  319. TITLE:=NFS Secure RPC
  320. DEPENDS:= \
  321. +kmod-fs-nfs-common \
  322. +kmod-crypto-des \
  323. +kmod-crypto-cbc \
  324. +kmod-crypto-cts \
  325. +kmod-crypto-md5 \
  326. +kmod-crypto-sha1 \
  327. +kmod-crypto-hmac \
  328. +kmod-crypto-ecb \
  329. +kmod-crypto-arc4
  330. KCONFIG:= \
  331. CONFIG_SUNRPC_GSS \
  332. CONFIG_RPCSEC_GSS_KRB5
  333. FILES:= \
  334. $(LINUX_DIR)/lib/oid_registry.ko \
  335. $(LINUX_DIR)/net/sunrpc/auth_gss/auth_rpcgss.ko \
  336. $(LINUX_DIR)/net/sunrpc/auth_gss/rpcsec_gss_krb5.ko
  337. AUTOLOAD:=$(call AutoLoad,31,oid_registry auth_rpcgss rpcsec_gss_krb5)
  338. endef
  339. define KernelPackage/fs-nfs-common-rpcsec/description
  340. Kernel modules for NFS Secure RPC
  341. endef
  342. $(eval $(call KernelPackage,fs-nfs-common-rpcsec))
  343. define KernelPackage/fs-nfs-v3
  344. SUBMENU:=$(FS_MENU)
  345. TITLE:=NFS3 filesystem client support
  346. DEPENDS:=+kmod-fs-nfs
  347. FILES:= \
  348. $(LINUX_DIR)/fs/nfs/nfsv3.ko
  349. AUTOLOAD:=$(call AutoLoad,41,nfsv3)
  350. endef
  351. define KernelPackage/fs-nfs-v3/description
  352. Kernel module for NFS v3 client support
  353. endef
  354. $(eval $(call KernelPackage,fs-nfs-v3))
  355. define KernelPackage/fs-nfs-v4
  356. SUBMENU:=$(FS_MENU)
  357. TITLE:=NFS4 filesystem client support
  358. DEPENDS:=+kmod-fs-nfs
  359. KCONFIG:= \
  360. CONFIG_NFS_V4=y
  361. FILES:= \
  362. $(LINUX_DIR)/fs/nfs/nfsv4.ko
  363. AUTOLOAD:=$(call AutoLoad,41,nfsv4)
  364. endef
  365. define KernelPackage/fs-nfs-v4/description
  366. Kernel module for NFS v4 client support
  367. endef
  368. $(eval $(call KernelPackage,fs-nfs-v4))
  369. define KernelPackage/fs-nfsd
  370. SUBMENU:=$(FS_MENU)
  371. TITLE:=NFS kernel server support
  372. DEPENDS:=+kmod-fs-nfs-common +kmod-fs-exportfs +kmod-fs-nfs-common-rpcsec
  373. KCONFIG:= \
  374. CONFIG_NFSD \
  375. CONFIG_NFSD_V4=y \
  376. CONFIG_NFSD_V4_SECURITY_LABEL=n \
  377. CONFIG_NFSD_BLOCKLAYOUT=n \
  378. CONFIG_NFSD_SCSILAYOUT=n \
  379. CONFIG_NFSD_FLEXFILELAYOUT=n \
  380. CONFIG_NFSD_FAULT_INJECTION=n
  381. FILES:=$(LINUX_DIR)/fs/nfsd/nfsd.ko
  382. AUTOLOAD:=$(call AutoLoad,40,nfsd)
  383. endef
  384. define KernelPackage/fs-nfsd/description
  385. Kernel module for NFS kernel server support
  386. endef
  387. $(eval $(call KernelPackage,fs-nfsd))
  388. define KernelPackage/fs-ntfs
  389. SUBMENU:=$(FS_MENU)
  390. TITLE:=NTFS filesystem support
  391. KCONFIG:=CONFIG_NTFS_FS
  392. FILES:=$(LINUX_DIR)/fs/ntfs/ntfs.ko
  393. AUTOLOAD:=$(call AutoLoad,30,ntfs)
  394. $(call AddDepends/nls)
  395. endef
  396. define KernelPackage/fs-ntfs/description
  397. Kernel module for NTFS filesystem support
  398. endef
  399. $(eval $(call KernelPackage,fs-ntfs))
  400. define KernelPackage/fs-reiserfs
  401. SUBMENU:=$(FS_MENU)
  402. TITLE:=ReiserFS filesystem support
  403. KCONFIG:=CONFIG_REISERFS_FS
  404. FILES:=$(LINUX_DIR)/fs/reiserfs/reiserfs.ko
  405. AUTOLOAD:=$(call AutoLoad,30,reiserfs,1)
  406. endef
  407. define KernelPackage/fs-reiserfs/description
  408. Kernel module for ReiserFS support
  409. endef
  410. $(eval $(call KernelPackage,fs-reiserfs))
  411. define KernelPackage/fs-squashfs
  412. SUBMENU:=$(FS_MENU)
  413. TITLE:=SquashFS 4.0 filesystem support
  414. KCONFIG:=CONFIG_SQUASHFS \
  415. CONFIG_SQUASHFS_XZ=y
  416. FILES:=$(LINUX_DIR)/fs/squashfs/squashfs.ko
  417. AUTOLOAD:=$(call AutoLoad,30,squashfs,1)
  418. endef
  419. define KernelPackage/fs-squashfs/description
  420. Kernel module for SquashFS 4.0 support
  421. endef
  422. $(eval $(call KernelPackage,fs-squashfs))
  423. define KernelPackage/fs-udf
  424. SUBMENU:=$(FS_MENU)
  425. TITLE:=UDF filesystem support
  426. KCONFIG:=CONFIG_UDF_FS
  427. FILES:=$(LINUX_DIR)/fs/udf/udf.ko
  428. AUTOLOAD:=$(call AutoLoad,30,udf)
  429. DEPENDS:=+kmod-lib-crc-itu-t +kmod-cdrom
  430. $(call AddDepends/nls)
  431. endef
  432. define KernelPackage/fs-udf/description
  433. Kernel module for UDF filesystem support
  434. endef
  435. $(eval $(call KernelPackage,fs-udf))
  436. define KernelPackage/fs-vfat
  437. SUBMENU:=$(FS_MENU)
  438. TITLE:=VFAT filesystem support
  439. KCONFIG:= \
  440. CONFIG_FAT_FS \
  441. CONFIG_VFAT_FS
  442. FILES:= \
  443. $(LINUX_DIR)/fs/fat/fat.ko \
  444. $(LINUX_DIR)/fs/fat/vfat.ko
  445. AUTOLOAD:=$(call AutoLoad,30,fat vfat)
  446. $(call AddDepends/nls,cp437 iso8859-1 utf8)
  447. endef
  448. define KernelPackage/fs-vfat/description
  449. Kernel module for VFAT filesystem support
  450. endef
  451. $(eval $(call KernelPackage,fs-vfat))
  452. define KernelPackage/fs-xfs
  453. SUBMENU:=$(FS_MENU)
  454. TITLE:=XFS filesystem support
  455. KCONFIG:=CONFIG_XFS_FS
  456. DEPENDS:= +kmod-fs-exportfs +kmod-lib-crc32c
  457. FILES:=$(LINUX_DIR)/fs/xfs/xfs.ko
  458. AUTOLOAD:=$(call AutoLoad,30,xfs,1)
  459. endef
  460. define KernelPackage/fs-xfs/description
  461. Kernel module for XFS support
  462. endef
  463. $(eval $(call KernelPackage,fs-xfs))
  464. define KernelPackage/fuse
  465. SUBMENU:=$(FS_MENU)
  466. TITLE:=FUSE (Filesystem in Userspace) support
  467. KCONFIG:= CONFIG_FUSE_FS
  468. FILES:=$(LINUX_DIR)/fs/fuse/fuse.ko
  469. AUTOLOAD:=$(call AutoLoad,80,fuse)
  470. endef
  471. define KernelPackage/fuse/description
  472. Kernel module for userspace filesystem support
  473. endef
  474. $(eval $(call KernelPackage,fuse))