Config.in 868 B

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. config BR2_TARGET_ROOTFS_SQUASHFS
  2. bool "squashfs root filesystem"
  3. help
  4. Build a squashfs root filesystem
  5. if BR2_TARGET_ROOTFS_SQUASHFS
  6. config BR2_TARGET_ROOTFS_SQUASHFS_PAD
  7. bool "pad to a 4K boundary"
  8. default y # legacy was always ON
  9. help
  10. Say 'y' here (the default) to pad the the filesystem image
  11. to a 4K boundary. Say 'n' to disable padding.
  12. choice
  13. prompt "Compression algorithm"
  14. default BR2_TARGET_ROOTFS_SQUASHFS4_GZIP
  15. help
  16. Select the squashfs compression algorithm to use when
  17. generating the filesystem.
  18. config BR2_TARGET_ROOTFS_SQUASHFS4_GZIP
  19. bool "gzip"
  20. config BR2_TARGET_ROOTFS_SQUASHFS4_LZ4
  21. bool "lz4"
  22. config BR2_TARGET_ROOTFS_SQUASHFS4_LZMA
  23. bool "lzma"
  24. config BR2_TARGET_ROOTFS_SQUASHFS4_LZO
  25. bool "lzo"
  26. config BR2_TARGET_ROOTFS_SQUASHFS4_XZ
  27. bool "xz"
  28. config BR2_TARGET_ROOTFS_SQUASHFS4_ZSTD
  29. bool "zstd"
  30. endchoice
  31. endif