Config.in.host 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041
  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. depends on BR2_HOST_GCC_AT_LEAST_5 # host-libselinux -> host-libsepol
  13. help
  14. This option will build and install the fastboot utility for
  15. the host, which can be used to reflash target devices
  16. implementing the fastboot protocol.
  17. comment "fastboot needs a toolchain w/ host gcc >= 5"
  18. depends on !BR2_HOST_GCC_AT_LEAST_5
  19. config BR2_PACKAGE_HOST_ANDROID_TOOLS_ADB
  20. bool "adb"
  21. help
  22. This option will build and install the adb utility for the
  23. host, which can be used to interact with target devices
  24. implementing the ADB protocol.
  25. config BR2_PACKAGE_HOST_ANDROID_TOOLS_EXT4_UTILS
  26. bool "ext4 utils"
  27. depends on BR2_HOST_GCC_AT_LEAST_5 # host-libselinux -> host-libsepol
  28. help
  29. This option will build and install the ext4 utils for the
  30. host, i.e. make_ext4fs, ext4fixup, ext2simg, img2simg,
  31. simg2img and simg2simg.
  32. comment "ext4 utils needs a toolchain w/ host gcc >= 5"
  33. depends on !BR2_HOST_GCC_AT_LEAST_5
  34. endif