2
1

Config.in 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162
  1. config BR2_TARGET_ROOTFS_TAR
  2. bool "tar the root filesystem"
  3. default y
  4. help
  5. Build a tar archive of the root filesystem
  6. choice
  7. prompt "Compression method"
  8. default BR2_TARGET_ROOTFS_TAR_NONE
  9. depends on BR2_TARGET_ROOTFS_TAR
  10. help
  11. Select compressor for tar archive of the root filesystem
  12. config BR2_TARGET_ROOTFS_TAR_NONE
  13. bool "no compression"
  14. help
  15. Do not compress the tarball.
  16. config BR2_TARGET_ROOTFS_TAR_GZIP
  17. bool "gzip"
  18. help
  19. Do compress the tarball with gzip.
  20. config BR2_TARGET_ROOTFS_TAR_BZIP2
  21. bool "bzip2"
  22. help
  23. Do compress the tarball with bzip2.
  24. config BR2_TARGET_ROOTFS_TAR_LZ4
  25. bool "lz4"
  26. help
  27. Do compress the tarball with lz4.
  28. config BR2_TARGET_ROOTFS_TAR_LZMA
  29. bool "lzma"
  30. help
  31. Do compress the tarball with lzma.
  32. config BR2_TARGET_ROOTFS_TAR_LZO
  33. bool "lzo"
  34. help
  35. Do compress the tarball with lzop.
  36. config BR2_TARGET_ROOTFS_TAR_XZ
  37. bool "xz"
  38. help
  39. Do compress the tarball with xz.
  40. config BR2_TARGET_ROOTFS_TAR_ZSTD
  41. bool "zstd"
  42. help
  43. Do compress the tarball with zstd.
  44. endchoice
  45. config BR2_TARGET_ROOTFS_TAR_OPTIONS
  46. string "other random options to pass to tar"
  47. default ""
  48. depends on BR2_TARGET_ROOTFS_TAR
  49. help
  50. Any other flags you want to pass to tar
  51. Refer to tar --help for details