Config.in 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  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. endchoice
  41. config BR2_TARGET_ROOTFS_TAR_OPTIONS
  42. string "other random options to pass to tar"
  43. default ""
  44. depends on BR2_TARGET_ROOTFS_TAR
  45. help
  46. Any other flags you want to pass to tar
  47. Refer to tar --help for details