Config.in.host 788 B

1234567891011121314151617181920212223242526
  1. config BR2_PACKAGE_HOST_ANDROID_TOOLS
  2. bool "host android-tools"
  3. select BR2_PACKAGE_HOST_ANDROID_TOOLS_ADB if \
  4. !BR2_PACKAGE_HOST_ANDROID_TOOLS_FASTBOOT
  5. help
  6. This package contains the fastboot and adb utilities, that
  7. can be used to interact with target devices using of these
  8. protocols.
  9. if BR2_PACKAGE_HOST_ANDROID_TOOLS
  10. config BR2_PACKAGE_HOST_ANDROID_TOOLS_FASTBOOT
  11. bool "fastboot"
  12. help
  13. This option will build and install the fastboot utility for
  14. the host, which can be used to reflash target devices
  15. implementing the fastboot protocol.
  16. config BR2_PACKAGE_HOST_ANDROID_TOOLS_ADB
  17. bool "adb"
  18. help
  19. This option will build and install the adb utility for the
  20. host, which can be used to interact with target devices
  21. implementing the ADB protocol.
  22. endif