Android daemon is not providing old kernels compatibility features. --- android/main.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/android/main.c b/android/main.c index 7d36976..7ee47fc 100644 --- a/android/main.c +++ b/android/main.c @@ -608,8 +608,8 @@ static void read_version_complete(uint8_t status, uint16_t length, info("Bluetooth management interface %u.%u initialized", mgmt_version, mgmt_revision); - if (mgmt_version < 1) { - error("Version 1.0 or later of management interface required"); + if (MGMT_VERSION(mgmt_version, mgmt_revision) < MGMT_VERSION(1, 3)) { + error("Version 1.3 or later of management interface required"); return; } -- 1.8.4.2 -- To unsubscribe from this list: send the line "unsubscribe linux-bluetooth" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html