Config.in 1.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  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_LZMA
  25. bool "lzma"
  26. help
  27. Do compress the tarball with lzma.
  28. config BR2_TARGET_ROOTFS_TAR_LZO
  29. bool "lzo"
  30. help
  31. Do compress the tarball with lzop.
  32. config BR2_TARGET_ROOTFS_TAR_XZ
  33. bool "xz"
  34. help
  35. Do compress the tarball with xz.
  36. endchoice
  37. config BR2_TARGET_ROOTFS_TAR_OPTIONS
  38. string "other random options to pass to tar"
  39. depends on BR2_TARGET_ROOTFS_TAR
  40. default ""
  41. help
  42. Any other flags you want to pass to tar
  43. Refer to tar --help for details