fs.mk 16 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717
  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 +kmod-fs-netfs
  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 +kmod-crypto-blake2b +kmod-crypto-xxhash
  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-smbfs-common
  70. SUBMENU:=$(FS_MENU)
  71. TITLE:=SMBFS common dependencies support
  72. HIDDEN:=1
  73. DEPENDS:=+kmod-fs-netfs +kmod-nls-ucs2-utils
  74. KCONFIG:=\
  75. CONFIG_SMBFS
  76. FILES:= \
  77. $(LINUX_DIR)/fs/smb/common/cifs_arc4.ko \
  78. $(LINUX_DIR)/fs/smb/common/cifs_md4.ko
  79. endef
  80. define KernelPackage/fs-smbfs-common/description
  81. Kernel module dependency for CIFS or SMB_SERVER support
  82. endef
  83. $(eval $(call KernelPackage,fs-smbfs-common))
  84. define KernelPackage/fs-cifs
  85. SUBMENU:=$(FS_MENU)
  86. TITLE:=CIFS support
  87. KCONFIG:= \
  88. CONFIG_CIFS \
  89. CONFIG_CIFS_DFS_UPCALL=n \
  90. CONFIG_CIFS_UPCALL=n
  91. FILES:= \
  92. $(LINUX_DIR)/fs/smb/client/cifs.ko
  93. AUTOLOAD:=$(call AutoLoad,30,cifs)
  94. $(call AddDepends/nls)
  95. DEPENDS+= \
  96. +kmod-fs-smbfs-common \
  97. +kmod-crypto-md5 \
  98. +kmod-crypto-sha256 \
  99. +kmod-crypto-sha512 \
  100. +kmod-crypto-cmac \
  101. +kmod-crypto-hmac \
  102. +kmod-crypto-aead \
  103. +kmod-crypto-ccm \
  104. +kmod-crypto-ecb \
  105. +kmod-crypto-des \
  106. +kmod-asn1-decoder \
  107. +kmod-oid-registry \
  108. +kmod-dnsresolver
  109. endef
  110. define KernelPackage/fs-cifs/description
  111. Kernel module for CIFS support
  112. endef
  113. $(eval $(call KernelPackage,fs-cifs))
  114. define KernelPackage/fs-configfs
  115. SUBMENU:=$(FS_MENU)
  116. TITLE:=Configuration filesystem support
  117. KCONFIG:= \
  118. CONFIG_CONFIGFS_FS
  119. FILES:=$(LINUX_DIR)/fs/configfs/configfs.ko
  120. AUTOLOAD:=$(call AutoLoad,30,configfs)
  121. endef
  122. define KernelPackage/fs-configfs/description
  123. Kernel module for configfs support
  124. endef
  125. $(eval $(call KernelPackage,fs-configfs))
  126. define KernelPackage/fs-cramfs
  127. SUBMENU:=$(FS_MENU)
  128. TITLE:=Compressed RAM/ROM filesystem support
  129. DEPENDS:=+kmod-lib-zlib-inflate
  130. KCONFIG:= \
  131. CONFIG_CRAMFS
  132. FILES:=$(LINUX_DIR)/fs/cramfs/cramfs.ko
  133. AUTOLOAD:=$(call AutoLoad,30,cramfs)
  134. endef
  135. define KernelPackage/fs-cramfs/description
  136. Kernel module for cramfs support
  137. endef
  138. $(eval $(call KernelPackage,fs-cramfs))
  139. define KernelPackage/fs-efivarfs
  140. SUBMENU:=$(FS_MENU)
  141. TITLE:=efivar filesystem support
  142. KCONFIG:=CONFIG_EFIVAR_FS
  143. FILES:=$(LINUX_DIR)/fs/efivarfs/efivarfs.ko
  144. DEPENDS:=@(x86_64||x86)
  145. AUTOLOAD:=$(call Autoload,90,efivarfs)
  146. endef
  147. define KernelPackage/fs-efivarfs/description
  148. Kernel module to support efivarfs file system mountpoint.
  149. endef
  150. $(eval $(call KernelPackage,fs-efivarfs))
  151. define KernelPackage/fs-exfat
  152. SUBMENU:=$(FS_MENU)
  153. TITLE:=exFAT filesystem support
  154. KCONFIG:= \
  155. CONFIG_EXFAT_FS \
  156. CONFIG_EXFAT_DEFAULT_IOCHARSET="utf8"
  157. FILES:= $(LINUX_DIR)/fs/exfat/exfat.ko
  158. AUTOLOAD:=$(call AutoLoad,30,exfat,1)
  159. DEPENDS:=+kmod-nls-base
  160. endef
  161. define KernelPackage/fs-exfat/description
  162. Kernel module for exFAT filesystem support
  163. endef
  164. $(eval $(call KernelPackage,fs-exfat))
  165. define KernelPackage/fs-exportfs
  166. SUBMENU:=$(FS_MENU)
  167. TITLE:=exportfs kernel server support
  168. KCONFIG:=CONFIG_EXPORTFS
  169. FILES=$(LINUX_DIR)/fs/exportfs/exportfs.ko
  170. AUTOLOAD:=$(call AutoLoad,20,exportfs,1)
  171. endef
  172. define KernelPackage/fs-exportfs/description
  173. Kernel module for exportfs. Needed for some other modules.
  174. endef
  175. $(eval $(call KernelPackage,fs-exportfs))
  176. define KernelPackage/fs-ext4
  177. SUBMENU:=$(FS_MENU)
  178. TITLE:=EXT4 filesystem support
  179. DEPENDS := \
  180. +kmod-lib-crc16 \
  181. +kmod-crypto-hash \
  182. +kmod-crypto-crc32c
  183. KCONFIG:= \
  184. CONFIG_EXT4_FS \
  185. CONFIG_EXT4_ENCRYPTION=n \
  186. CONFIG_JBD2
  187. FILES:= \
  188. $(LINUX_DIR)/fs/ext4/ext4.ko \
  189. $(LINUX_DIR)/fs/jbd2/jbd2.ko \
  190. $(LINUX_DIR)/fs/mbcache.ko
  191. AUTOLOAD:=$(call AutoLoad,30,mbcache jbd2 ext4,1)
  192. endef
  193. define KernelPackage/fs-ext4/description
  194. Kernel module for EXT4 filesystem support
  195. endef
  196. $(eval $(call KernelPackage,fs-ext4))
  197. define KernelPackage/fs-f2fs
  198. SUBMENU:=$(FS_MENU)
  199. TITLE:=F2FS filesystem support
  200. DEPENDS:= +kmod-crypto-hash +kmod-crypto-crc32 +kmod-nls-base
  201. KCONFIG:=CONFIG_F2FS_FS
  202. FILES:=$(LINUX_DIR)/fs/f2fs/f2fs.ko
  203. AUTOLOAD:=$(call AutoLoad,30,f2fs,1)
  204. endef
  205. define KernelPackage/fs-f2fs/description
  206. Kernel module for F2FS filesystem support
  207. endef
  208. $(eval $(call KernelPackage,fs-f2fs))
  209. define KernelPackage/fs-fscache
  210. SUBMENU:=$(FS_MENU)
  211. TITLE:=General filesystem local cache manager
  212. DEPENDS:=+kmod-fs-netfs
  213. KCONFIG:=\
  214. [email protected] \
  215. [email protected] \
  216. CONFIG_FSCACHE_STATS=y \
  217. CONFIG_FSCACHE_HISTOGRAM=n \
  218. CONFIG_FSCACHE_DEBUG=n \
  219. CONFIG_FSCACHE_OBJECT_LIST=n \
  220. CONFIG_CACHEFILES \
  221. CONFIG_CACHEFILES_DEBUG=n \
  222. CONFIG_CACHEFILES_HISTOGRAM=n \
  223. CONFIG_CACHEFILES_ERROR_INJECTION=n \
  224. CONFIG_CACHEFILES_ONDEMAND=n
  225. FILES:= \
  226. $(LINUX_DIR)/fs/fscache/[email protected] \
  227. $(LINUX_DIR)/fs/cachefiles/cachefiles.ko
  228. AUTOLOAD:=$(call AutoLoad,29,fscache cachefiles)
  229. endef
  230. $(eval $(call KernelPackage,fs-fscache))
  231. define KernelPackage/fs-hfs
  232. SUBMENU:=$(FS_MENU)
  233. TITLE:=HFS filesystem support
  234. DEPENDS:=+kmod-cdrom
  235. KCONFIG:=CONFIG_HFS_FS
  236. FILES:=$(LINUX_DIR)/fs/hfs/hfs.ko
  237. AUTOLOAD:=$(call AutoLoad,30,hfs)
  238. $(call AddDepends/nls)
  239. endef
  240. define KernelPackage/fs-hfs/description
  241. Kernel module for HFS filesystem support
  242. endef
  243. $(eval $(call KernelPackage,fs-hfs))
  244. define KernelPackage/fs-hfsplus
  245. SUBMENU:=$(FS_MENU)
  246. TITLE:=HFS+ filesystem support
  247. DEPENDS:=+kmod-cdrom
  248. KCONFIG:=CONFIG_HFSPLUS_FS
  249. FILES:=$(LINUX_DIR)/fs/hfsplus/hfsplus.ko
  250. AUTOLOAD:=$(call AutoLoad,30,hfsplus)
  251. $(call AddDepends/nls,utf8)
  252. endef
  253. define KernelPackage/fs-hfsplus/description
  254. Kernel module for HFS+ filesystem support
  255. endef
  256. $(eval $(call KernelPackage,fs-hfsplus))
  257. define KernelPackage/fs-isofs
  258. SUBMENU:=$(FS_MENU)
  259. TITLE:=ISO9660 filesystem support
  260. DEPENDS:=+kmod-lib-zlib-inflate +kmod-cdrom
  261. KCONFIG:=CONFIG_ISO9660_FS CONFIG_JOLIET=y CONFIG_ZISOFS=n
  262. FILES:=$(LINUX_DIR)/fs/isofs/isofs.ko
  263. AUTOLOAD:=$(call AutoLoad,30,isofs)
  264. $(call AddDepends/nls)
  265. endef
  266. define KernelPackage/fs-isofs/description
  267. Kernel module for ISO9660 filesystem support
  268. endef
  269. $(eval $(call KernelPackage,fs-isofs))
  270. define KernelPackage/fs-jfs
  271. SUBMENU:=$(FS_MENU)
  272. TITLE:=JFS filesystem support
  273. KCONFIG:=CONFIG_JFS_FS
  274. FILES:=$(LINUX_DIR)/fs/jfs/jfs.ko
  275. AUTOLOAD:=$(call AutoLoad,30,jfs,1)
  276. DEPENDS:=+kmod-nls-ucs2-utils
  277. $(call AddDepends/nls)
  278. endef
  279. define KernelPackage/fs-jfs/description
  280. Kernel module for JFS support
  281. endef
  282. $(eval $(call KernelPackage,fs-jfs))
  283. define KernelPackage/fs-ksmbd
  284. SUBMENU:=$(FS_MENU)
  285. TITLE:=SMB kernel server support
  286. DEPENDS:= \
  287. +kmod-nls-base \
  288. +kmod-nls-utf8 \
  289. +kmod-crypto-md5 \
  290. +kmod-crypto-hmac \
  291. +kmod-crypto-ecb \
  292. +kmod-crypto-des \
  293. +kmod-crypto-sha256 \
  294. +kmod-crypto-cmac \
  295. +kmod-crypto-sha512 \
  296. +kmod-crypto-aead \
  297. +kmod-crypto-ccm \
  298. +kmod-crypto-gcm \
  299. +kmod-asn1-decoder \
  300. +kmod-oid-registry \
  301. +kmod-fs-smbfs-common
  302. KCONFIG:= \
  303. CONFIG_SMB_SERVER \
  304. CONFIG_SMB_SERVER_SMBDIRECT=n \
  305. CONFIG_SMB_SERVER_CHECK_CAP_NET_ADMIN=n \
  306. CONFIG_SMB_SERVER_KERBEROS5=n
  307. FILES:= \
  308. $(LINUX_DIR)/fs/smb/server/ksmbd.ko
  309. AUTOLOAD:=$(call AutoLoad,41,ksmbd)
  310. endef
  311. define KernelPackage/fs-ksmbd/description
  312. Kernel module for SMB kernel server support
  313. endef
  314. $(eval $(call KernelPackage,fs-ksmbd))
  315. define KernelPackage/fs-minix
  316. SUBMENU:=$(FS_MENU)
  317. TITLE:=Minix filesystem support
  318. KCONFIG:=CONFIG_MINIX_FS
  319. FILES:=$(LINUX_DIR)/fs/minix/minix.ko
  320. AUTOLOAD:=$(call AutoLoad,30,minix)
  321. endef
  322. define KernelPackage/fs-minix/description
  323. Kernel module for Minix filesystem support
  324. endef
  325. $(eval $(call KernelPackage,fs-minix))
  326. define KernelPackage/fs-msdos
  327. SUBMENU:=$(FS_MENU)
  328. TITLE:=MSDOS filesystem support
  329. DEPENDS:=+kmod-fs-vfat
  330. KCONFIG:=CONFIG_MSDOS_FS
  331. FILES:=$(LINUX_DIR)/fs/fat/msdos.ko
  332. AUTOLOAD:=$(call AutoLoad,40,msdos)
  333. $(call AddDepends/nls)
  334. endef
  335. define KernelPackage/fs-msdos/description
  336. Kernel module for MSDOS filesystem support
  337. endef
  338. $(eval $(call KernelPackage,fs-msdos))
  339. define KernelPackage/fs-netfs
  340. SUBMENU:=$(FS_MENU)
  341. TITLE:=Network Filesystems support
  342. KCONFIG:= CONFIG_NETFS_SUPPORT
  343. FILES:=$(LINUX_DIR)/fs/netfs/netfs.ko
  344. AUTOLOAD:=$(call AutoLoad,28,netfs)
  345. endef
  346. $(eval $(call KernelPackage,fs-netfs))
  347. define KernelPackage/fs-nfs
  348. SUBMENU:=$(FS_MENU)
  349. TITLE:=NFS filesystem client support
  350. DEPENDS:=+kmod-fs-nfs-common +kmod-dnsresolver
  351. KCONFIG:= \
  352. CONFIG_NFS_FS \
  353. CONFIG_NFS_USE_LEGACY_DNS=n \
  354. CONFIG_NFS_USE_NEW_IDMAPPER=n
  355. FILES:= \
  356. $(LINUX_DIR)/fs/nfs/nfs.ko
  357. AUTOLOAD:=$(call AutoLoad,40,nfs)
  358. endef
  359. define KernelPackage/fs-nfs/description
  360. Kernel module for NFS client support
  361. endef
  362. $(eval $(call KernelPackage,fs-nfs))
  363. define KernelPackage/fs-nfs-common
  364. SUBMENU:=$(FS_MENU)
  365. TITLE:=Common NFS filesystem modules
  366. DEPENDS:=+kmod-oid-registry
  367. KCONFIG:= \
  368. CONFIG_LOCKD \
  369. CONFIG_SUNRPC \
  370. CONFIG_GRACE_PERIOD \
  371. CONFIG_NFS_V4=y \
  372. CONFIG_NFS_V4_1=y \
  373. CONFIG_NFS_V4_1_IMPLEMENTATION_ID_DOMAIN="kernel.org" \
  374. CONFIG_NFS_V4_1_MIGRATION=n \
  375. CONFIG_NFS_V4_2=y \
  376. CONFIG_NFS_V4_2_READ_PLUS=n
  377. FILES:= \
  378. $(LINUX_DIR)/fs/lockd/lockd.ko \
  379. $(LINUX_DIR)/net/sunrpc/sunrpc.ko \
  380. $(LINUX_DIR)/fs/nfs_common/grace.ko
  381. AUTOLOAD:=$(call AutoLoad,30,grace sunrpc lockd)
  382. endef
  383. $(eval $(call KernelPackage,fs-nfs-common))
  384. define KernelPackage/fs-nfs-common-rpcsec
  385. SUBMENU:=$(FS_MENU)
  386. TITLE:=NFS Secure RPC
  387. DEPENDS:= \
  388. +kmod-fs-nfs-common \
  389. +kmod-crypto-des \
  390. +kmod-crypto-cbc \
  391. +kmod-crypto-cts \
  392. +kmod-crypto-md5 \
  393. +kmod-crypto-sha1 \
  394. +kmod-crypto-hmac \
  395. +kmod-crypto-ecb \
  396. +kmod-crypto-arc4
  397. KCONFIG:= \
  398. CONFIG_SUNRPC_GSS \
  399. CONFIG_RPCSEC_GSS_KRB5
  400. FILES:= \
  401. $(LINUX_DIR)/net/sunrpc/auth_gss/auth_rpcgss.ko \
  402. $(LINUX_DIR)/net/sunrpc/auth_gss/rpcsec_gss_krb5.ko
  403. AUTOLOAD:=$(call AutoLoad,31,auth_rpcgss rpcsec_gss_krb5)
  404. endef
  405. define KernelPackage/fs-nfs-common-rpcsec/description
  406. Kernel modules for NFS Secure RPC
  407. endef
  408. $(eval $(call KernelPackage,fs-nfs-common-rpcsec))
  409. define KernelPackage/fs-nfs-v3
  410. SUBMENU:=$(FS_MENU)
  411. TITLE:=NFS3 filesystem client support
  412. DEPENDS:=+kmod-fs-nfs
  413. FILES:= \
  414. $(LINUX_DIR)/fs/nfs/nfsv3.ko
  415. AUTOLOAD:=$(call AutoLoad,41,nfsv3)
  416. endef
  417. define KernelPackage/fs-nfs-v3/description
  418. Kernel module for NFS v3 client support
  419. endef
  420. $(eval $(call KernelPackage,fs-nfs-v3))
  421. define KernelPackage/fs-nfs-v4
  422. SUBMENU:=$(FS_MENU)
  423. TITLE:=NFS4 filesystem client support
  424. DEPENDS:=+kmod-fs-nfs
  425. KCONFIG:= \
  426. CONFIG_NFS_V4=y
  427. FILES:= \
  428. $(LINUX_DIR)/fs/nfs/nfsv4.ko
  429. AUTOLOAD:=$(call AutoLoad,41,nfsv4)
  430. endef
  431. define KernelPackage/fs-nfs-v4/description
  432. Kernel module for NFS v4 client support
  433. endef
  434. $(eval $(call KernelPackage,fs-nfs-v4))
  435. define KernelPackage/fs-nfsd
  436. SUBMENU:=$(FS_MENU)
  437. TITLE:=NFS kernel server support
  438. DEPENDS:=+kmod-fs-nfs-common +kmod-fs-exportfs +kmod-fs-nfs-common-rpcsec
  439. KCONFIG:= \
  440. CONFIG_NFSD \
  441. CONFIG_NFSD_V4=y \
  442. CONFIG_NFSD_V4_SECURITY_LABEL=n \
  443. CONFIG_NFSD_BLOCKLAYOUT=n \
  444. CONFIG_NFSD_SCSILAYOUT=n \
  445. CONFIG_NFSD_FLEXFILELAYOUT=n \
  446. CONFIG_NFSD_FAULT_INJECTION=n \
  447. CONFIG_NFSD_V4_2_INTER_SSC=n
  448. FILES:=$(LINUX_DIR)/fs/nfsd/nfsd.ko
  449. AUTOLOAD:=$(call AutoLoad,40,nfsd)
  450. endef
  451. define KernelPackage/fs-nfsd/description
  452. Kernel module for NFS kernel server support
  453. endef
  454. $(eval $(call KernelPackage,fs-nfsd))
  455. define KernelPackage/fs-ntfs
  456. SUBMENU:=$(FS_MENU)
  457. TITLE:=NTFS filesystem read-only (old driver) support
  458. DEPENDS:=@LINUX_6_6
  459. KCONFIG:=CONFIG_NTFS_FS
  460. FILES:=$(LINUX_DIR)/fs/ntfs/ntfs.ko
  461. AUTOLOAD:=$(call AutoLoad,30,ntfs)
  462. $(call AddDepends/nls)
  463. endef
  464. define KernelPackage/fs-ntfs/description
  465. Kernel module for limited NTFS filesystem support. Support for writing
  466. is extremely limited and disabled as a result.
  467. endef
  468. $(eval $(call KernelPackage,fs-ntfs))
  469. define KernelPackage/fs-ntfs3
  470. SUBMENU:=$(FS_MENU)
  471. TITLE:=NTFS filesystem read & write (new driver) support
  472. KCONFIG:= CONFIG_NTFS3_FS CONFIG_NTFS3_FS_POSIX_ACL=y
  473. FILES:=$(LINUX_DIR)/fs/ntfs3/ntfs3.ko
  474. $(call AddDepends/nls)
  475. AUTOLOAD:=$(call AutoLoad,80,ntfs3)
  476. endef
  477. define KernelPackage/fs-ntfs3/description
  478. Kernel module for fully functional NTFS filesystem support. It allows
  479. reading as well as writing.
  480. It supports NTFS versions up to 3.1.
  481. endef
  482. $(eval $(call KernelPackage,fs-ntfs3))
  483. define KernelPackage/fs-reiserfs
  484. SUBMENU:=$(FS_MENU)
  485. TITLE:=ReiserFS filesystem support
  486. KCONFIG:=CONFIG_REISERFS_FS
  487. FILES:=$(LINUX_DIR)/fs/reiserfs/reiserfs.ko
  488. AUTOLOAD:=$(call AutoLoad,30,reiserfs,1)
  489. endef
  490. define KernelPackage/fs-reiserfs/description
  491. Kernel module for ReiserFS support
  492. endef
  493. $(eval $(call KernelPackage,fs-reiserfs))
  494. define KernelPackage/fs-squashfs
  495. SUBMENU:=$(FS_MENU)
  496. TITLE:=SquashFS 4.0 filesystem support
  497. KCONFIG:=CONFIG_SQUASHFS \
  498. CONFIG_SQUASHFS_XZ=y
  499. FILES:=$(LINUX_DIR)/fs/squashfs/squashfs.ko
  500. AUTOLOAD:=$(call AutoLoad,30,squashfs,1)
  501. endef
  502. define KernelPackage/fs-squashfs/description
  503. Kernel module for SquashFS 4.0 support
  504. endef
  505. $(eval $(call KernelPackage,fs-squashfs))
  506. define KernelPackage/fs-udf
  507. SUBMENU:=$(FS_MENU)
  508. TITLE:=UDF filesystem support
  509. KCONFIG:=CONFIG_UDF_FS
  510. FILES:=$(LINUX_DIR)/fs/udf/udf.ko
  511. AUTOLOAD:=$(call AutoLoad,30,udf)
  512. DEPENDS:=+kmod-lib-crc-itu-t +kmod-cdrom
  513. $(call AddDepends/nls)
  514. endef
  515. define KernelPackage/fs-udf/description
  516. Kernel module for UDF filesystem support
  517. endef
  518. $(eval $(call KernelPackage,fs-udf))
  519. define KernelPackage/fs-vfat
  520. SUBMENU:=$(FS_MENU)
  521. TITLE:=VFAT filesystem support
  522. KCONFIG:= \
  523. CONFIG_FAT_FS \
  524. CONFIG_VFAT_FS
  525. FILES:= \
  526. $(LINUX_DIR)/fs/fat/fat.ko \
  527. $(LINUX_DIR)/fs/fat/vfat.ko
  528. AUTOLOAD:=$(call AutoLoad,30,fat vfat,1)
  529. $(call AddDepends/nls,cp437 iso8859-1 utf8)
  530. endef
  531. define KernelPackage/fs-vfat/description
  532. Kernel module for VFAT filesystem support
  533. endef
  534. $(eval $(call KernelPackage,fs-vfat))
  535. define KernelPackage/fs-xfs
  536. SUBMENU:=$(FS_MENU)
  537. TITLE:=XFS filesystem support
  538. KCONFIG:=CONFIG_XFS_FS
  539. DEPENDS:= +kmod-fs-exportfs +kmod-lib-crc32c
  540. FILES:=$(LINUX_DIR)/fs/xfs/xfs.ko
  541. AUTOLOAD:=$(call AutoLoad,30,xfs,1)
  542. endef
  543. define KernelPackage/fs-xfs/description
  544. Kernel module for XFS support
  545. endef
  546. $(eval $(call KernelPackage,fs-xfs))
  547. define KernelPackage/fuse
  548. SUBMENU:=$(FS_MENU)
  549. TITLE:=FUSE (Filesystem in Userspace) support
  550. KCONFIG:= CONFIG_FUSE_FS
  551. FILES:=$(LINUX_DIR)/fs/fuse/fuse.ko
  552. AUTOLOAD:=$(call AutoLoad,80,fuse)
  553. endef
  554. define KernelPackage/fuse/description
  555. Kernel module for userspace filesystem support
  556. endef
  557. $(eval $(call KernelPackage,fuse))
  558. define KernelPackage/pstore
  559. SUBMENU:=$(FS_MENU)
  560. TITLE:=Pstore file system
  561. DEFAULT:=m if ALL_KMODS
  562. KCONFIG:= \
  563. CONFIG_PSTORE \
  564. CONFIG_PSTORE_COMPRESS=y
  565. FILES:= $(LINUX_DIR)/fs/pstore/pstore.ko
  566. AUTOLOAD:=$(call AutoLoad,30,pstore,1)
  567. DEPENDS:=+kmod-lib-zlib-deflate +kmod-lib-zlib-inflate
  568. endef
  569. define KernelPackage/pstore/description
  570. Kernel module for pstore filesystem support
  571. endef
  572. $(eval $(call KernelPackage,pstore))