2
1

Config.in 918 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  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. choice
  7. prompt "SquashFS version"
  8. default BR2_TARGET_ROOTFS_SQUASHFS4
  9. help
  10. Select the Squash filesystem version to use to generate the
  11. root filesystem.
  12. config BR2_TARGET_ROOTFS_SQUASHFS4
  13. bool "4.x"
  14. config BR2_TARGET_ROOTFS_SQUASHFS3
  15. depends on BR2_DEPRECATED
  16. bool "3.x"
  17. endchoice
  18. choice
  19. prompt "Compression algorithm"
  20. default BR2_TARGET_ROOTFS_SQUASHFS4_GZIP
  21. depends on BR2_TARGET_ROOTFS_SQUASHFS4
  22. help
  23. Select the squashfs compression algorithm to use when
  24. generating the filesystem.
  25. config BR2_TARGET_ROOTFS_SQUASHFS4_GZIP
  26. bool "gzip"
  27. config BR2_TARGET_ROOTFS_SQUASHFS4_LZMA
  28. bool "lzma"
  29. config BR2_TARGET_ROOTFS_SQUASHFS4_LZO
  30. bool "lzo"
  31. config BR2_TARGET_ROOTFS_SQUASHFS4_XZ
  32. bool "xz"
  33. endchoice
  34. endif