Config.in 907 B

1234567891011121314151617181920212223242526272829303132
  1. config BR2_TARGET_ROOTFS_SQUASHFS
  2. bool "squashfs root filesystem"
  3. select BR2_HOST_FAKEROOT
  4. help
  5. Build a squashfs root filesystem
  6. choice
  7. prompt "Squashfs version"
  8. default BR2_TARGET_ROOTFS_SQUASHFS_4
  9. depends on BR2_TARGET_ROOTFS_SQUASHFS
  10. help
  11. Select squashfs version - This must match what your kernel
  12. supports. Select 3.x if you use the legacy 3.x kernel
  13. patches (pre 2.6.29), and 4.x otherwise.
  14. config BR2_TARGET_ROOTFS_SQUASHFS_3
  15. depends on BR2_DEPRECATED || BR2_RECENT
  16. bool "3.x"
  17. help
  18. Select this if you use the legacy 3.x kernel patches (pre 2.6.29)
  19. config BR2_TARGET_ROOTFS_SQUASHFS_4
  20. bool "4.x"
  21. help
  22. Select this if you use the squashfs version in mainline (from 2.6.29)
  23. endchoice
  24. config BR2_TARGET_ROOTFS_SQUASHFS_VERSION
  25. string
  26. default "3.4" if BR2_TARGET_ROOTFS_SQUASHFS_3
  27. default "4.0" if BR2_TARGET_ROOTFS_SQUASHFS_4