Config.in 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  1. config BR2_TARGET_ROOTFS_F2FS
  2. bool "f2fs root filesystem"
  3. select BR2_PACKAGE_HOST_F2FS_TOOLS
  4. help
  5. Build a f2fs root filesystem. If you enable this option, you
  6. probably want to enable the f2fs-tools package too.
  7. if BR2_TARGET_ROOTFS_F2FS
  8. config BR2_TARGET_ROOTFS_F2FS_LABEL
  9. string "filesystem label"
  10. config BR2_TARGET_ROOTFS_F2FS_SIZE
  11. string "filesystem size"
  12. default "100M"
  13. help
  14. The size of the filesystem image in bytes.
  15. Suffix with K, M, G or T for power-of-two kilo-, mega-, giga-
  16. or terabytes.
  17. config BR2_TARGET_ROOTFS_F2FS_COLD_FILES
  18. string "extension list for cold files"
  19. help
  20. Specify a comma separated file extension list in order f2fs
  21. to treat them as cold files. The default list includes most
  22. of multimedia file extensions such as jpg, gif, mpeg, mkv,
  23. and so on.
  24. config BR2_TARGET_ROOTFS_F2FS_HOT_FILES
  25. string "extension list for hot files"
  26. help
  27. Specify a comma separated file extension list in order f2fs
  28. to treat them as hot files. The default list includes only
  29. a db extension.
  30. config BR2_TARGET_ROOTFS_F2FS_OVERPROVISION
  31. int "overprovision ratio"
  32. default 0
  33. help
  34. The percentage over the volume size for overprovision
  35. area. This area is hidden to users, and utilized by F2FS
  36. cleaner.
  37. Leave at 0 for autocalculation according to the partition
  38. size.
  39. config BR2_TARGET_ROOTFS_F2FS_DISCARD
  40. bool "discard policy"
  41. default y
  42. help
  43. Enable or disable discard policy.
  44. config BR2_TARGET_ROOTFS_F2FS_FEATURES
  45. string "filesystem features"
  46. help
  47. List of features that the F2FS filesystem should support
  48. (e.g "encrypt")
  49. endif # BR2_TARGET_ROOTFS_F2FS