Config.in 882 B

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. config BR2_TARGET_ROOTFS_TAR
  2. bool "tar the root filesystem"
  3. help
  4. Build a tar archive of the root filesystem
  5. choice
  6. prompt "Compression method"
  7. default BR2_TARGET_ROOTFS_TAR_NONE
  8. depends on BR2_TARGET_ROOTFS_TAR
  9. help
  10. Select compressor for tar archive of the root filesystem
  11. config BR2_TARGET_ROOTFS_TAR_NONE
  12. bool "no compression"
  13. help
  14. Do not compress the tarball.
  15. config BR2_TARGET_ROOTFS_TAR_GZIP
  16. bool "gzip"
  17. help
  18. Do compress the tarball with gzip.
  19. config BR2_TARGET_ROOTFS_TAR_BZIP2
  20. bool "bzip2"
  21. help
  22. Do compress the tarball with bzip2.
  23. config BR2_TARGET_ROOTFS_TAR_LZMA
  24. bool "lzma"
  25. help
  26. Do compress the tarball with lzma.
  27. endchoice
  28. config BR2_TARGET_ROOTFS_TAR_OPTIONS
  29. string "other random options to pass to tar"
  30. depends on BR2_TARGET_ROOTFS_TAR
  31. default ""
  32. help
  33. Any other flags you want to pass to tar
  34. Refer to tar --help for details