Config.in 893 B

123456789101112131415161718192021222324252627282930313233343536373839404142
  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. endchoice
  29. config BR2_TARGET_ROOTFS_TAR_OPTIONS
  30. string "other random options to pass to tar"
  31. depends on BR2_TARGET_ROOTFS_TAR
  32. default ""
  33. help
  34. Any other flags you want to pass to tar
  35. Refer to tar --help for details