|
@@ -38,6 +38,7 @@ config BR2_PACKAGE_ANDROID_TOOLS_FASTBOOT
|
|
bool "fastboot"
|
|
bool "fastboot"
|
|
depends on BR2_TOOLCHAIN_HAS_THREADS # libselinux
|
|
depends on BR2_TOOLCHAIN_HAS_THREADS # libselinux
|
|
depends on !BR2_STATIC_LIBS # libselinux
|
|
depends on !BR2_STATIC_LIBS # libselinux
|
|
|
|
+ depends on BR2_TOOLCHAIN_GCC_AT_LEAST_5 # libselinux -> libsepol
|
|
depends on BR2_PACKAGE_ANDROID_TOOLS_FASTBOOT_GOOD_KERNEL_HEADERS
|
|
depends on BR2_PACKAGE_ANDROID_TOOLS_FASTBOOT_GOOD_KERNEL_HEADERS
|
|
select BR2_PACKAGE_LIBSELINUX
|
|
select BR2_PACKAGE_LIBSELINUX
|
|
select BR2_PACKAGE_ZLIB
|
|
select BR2_PACKAGE_ZLIB
|
|
@@ -46,8 +47,9 @@ config BR2_PACKAGE_ANDROID_TOOLS_FASTBOOT
|
|
the target, which can be used to reflash other target devices
|
|
the target, which can be used to reflash other target devices
|
|
implementing the fastboot protocol.
|
|
implementing the fastboot protocol.
|
|
|
|
|
|
-comment "fastboot needs a toolchain w/ threads, dynamic library"
|
|
|
|
- depends on !BR2_TOOLCHAIN_HAS_THREADS || BR2_STATIC_LIBS
|
|
|
|
|
|
+comment "fastboot needs a toolchain w/ threads, dynamic library, gcc >= 5"
|
|
|
|
+ depends on !BR2_TOOLCHAIN_HAS_THREADS || BR2_STATIC_LIBS || \
|
|
|
|
+ !BR2_TOOLCHAIN_GCC_AT_LEAST_5
|
|
|
|
|
|
comment "fastboot needs headers >= 3.10 (PowerPC64), headers >= 3.16 (MIPS64)"
|
|
comment "fastboot needs headers >= 3.10 (PowerPC64), headers >= 3.16 (MIPS64)"
|
|
depends on !BR2_arc
|
|
depends on !BR2_arc
|