2
1

Config.in 459 B

1234567891011121314151617181920212223
  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. endif