Config.in 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  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 file extension list in order f2fs to treat them as
  21. cold files. The default list includes most of multimedia
  22. file extensions such as jpg, gif, mpeg, mkv, and so on.
  23. config BR2_TARGET_ROOTFS_F2FS_OVERPROVISION
  24. int "overprovision ratio"
  25. default 0
  26. help
  27. The percentage over the volume size for overprovision
  28. area. This area is hidden to users, and utilized by F2FS
  29. cleaner.
  30. Leave at 0 to use the default overprovision ratio of
  31. mkfs.f2fs.
  32. config BR2_TARGET_ROOTFS_F2FS_DISCARD
  33. bool "discard policy"
  34. default y
  35. help
  36. Enable or disable discard policy.
  37. config BR2_TARGET_ROOTFS_F2FS_FEATURES
  38. string "filesystem features"
  39. help
  40. List of features that the F2FS filesystem should support
  41. (e.g "encrypt")
  42. endif # BR2_TARGET_ROOTFS_F2FS