fs.mk 13 KB

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