Config.in 1.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  1. config BR2_TARGET_ROOTFS_TAR
  2. bool "tar the root filesystem"
  3. select BR2_HOST_FAKEROOT
  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. Note that you either have to have gzip installed on your host
  21. or select to build a gzip for your host. See the packages submenu.
  22. config BR2_TARGET_ROOTFS_TAR_BZIP2
  23. bool "bzip2"
  24. help
  25. Do compress the tarball with bzip2.
  26. Note that you either have to have bzip2 installed on your host
  27. or select to build a bzip2 for your host. See the packages submenu.
  28. config BR2_TARGET_ROOTFS_TAR_LZMA
  29. bool "lzma"
  30. help
  31. Do compress the tarball with lzma.
  32. Note that you either have to have lzma installed on your host
  33. or select to build a lzma for your host. See the packages submenu.
  34. endchoice
  35. config BR2_TARGET_ROOTFS_TAR_OPTIONS
  36. string "other random options to pass to tar"
  37. depends on BR2_TARGET_ROOTFS_TAR
  38. default ""
  39. help
  40. Any other flags you want to pass to tar
  41. Refer to tar --help for details
  42. config BR2_TARGET_ROOTFS_TAR_COPYTO
  43. string "also copy the image to..."
  44. depends on BR2_TARGET_ROOTFS_TAR
  45. default ""
  46. help
  47. Copies the resulting image to a secondary location
  48. like a tftp server's root directory.
  49. Example: $(IMAGE)-$(DATE).tar