Config.in 1.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. config BR2_PACKAGE_BMAP_TOOLS
  2. bool "bmap-tools"
  3. depends on BR2_PACKAGE_PYTHON3
  4. select BR2_PACKAGE_PYTHON3_PYEXPAT # runtime
  5. select BR2_PACKAGE_PYTHON_SETUPTOOLS # runtime, pkg_resources
  6. select BR2_PACKAGE_PYTHON_SIX # runtime
  7. help
  8. Tool to flash image files to block devices using the block map
  9. bmaptool is a generic tool for creating the block map (bmap)
  10. for a file, and copying files using the block map. The idea is
  11. that large file containing unused blocks, like raw system
  12. image files, can be copied or flashed a lot faster with
  13. bmaptool than with traditional tools like "dd" or "cp".
  14. Relevant optional dependencies:
  15. - Busybox compiled with CONFIG_BZIP2, or BR2_PACKAGE_BZIP2,
  16. to support bz2 compressed images
  17. - BR2_PACKAGE_PIGZ for optimized gzip decompression
  18. - Busybox compiled with CONFIG_LZOP, or BR2_PACKAGE_LZOP, to
  19. support lzo compressed images.
  20. - BR2_PACKAGE_ZIP to support zip compressed images
  21. - BR2_PACKAGE_LZ4 to support lz4 compressed images
  22. - BR2_PACKAGE_ZSTD to support zstd compressed images
  23. - Busybox compiled CONFIG_FEATURE_SEAMLESS_* or
  24. BR2_PACKAGE_TAR to support tar compressed images
  25. - BR2_PACKAGE_OPENSSH to retrieve images over SSH.
  26. - BR2_PACKAGE_SSHPASS to retrieve images over SSH if
  27. password authentication is used.
  28. Image signature verification is not supported as
  29. python-gpgme is not available. Optimized bzip2 decompression
  30. is not supported as pbzip2 is not available.
  31. https://github.com/intel/bmap-tools