[PATCH] android: Add possibility to start android daemon on PC in single mode

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

 



With this patch it is possible to start android daemon on PC in
BREDR or LE or BREDR/LE mode by setting system environment variable
named BLUETOOTH_MODE to appropriate value according to README.

This is useful for testing purposes.
---
 android/cutils/properties.h | 13 +++++++++++++
 1 file changed, 13 insertions(+)

diff --git a/android/cutils/properties.h b/android/cutils/properties.h
index 66a4a84..b9c59a5 100644
--- a/android/cutils/properties.h
+++ b/android/cutils/properties.h
@@ -29,9 +29,22 @@
 
 #define PROPERTY_VALUE_MAX 32
 
+#define BLUETOOTH_MODE_PROPERTY_NAME "persist.sys.bluetooth.mode"
+
 static inline int property_get(const char *key, char *value,
 						const char *default_value)
 {
+	if (!strcmp(key, BLUETOOTH_MODE_PROPERTY_NAME)) {
+		char *mode;
+
+		mode = getenv("BLUETOOTH_MODE");
+		if (!mode)
+			return 0;
+
+		memcpy(value, mode, strlen(mode));
+		return 1;
+	}
+
 	return 0;
 }
 
-- 
1.8.4

--
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




[Index of Archives]     [Bluez Devel]     [Linux Wireless Networking]     [Linux Wireless Personal Area Networking]     [Linux ATH6KL]     [Linux USB Devel]     [Linux Media Drivers]     [Linux Audio Users]     [Linux Kernel]     [Linux SCSI]     [Big List of Linux Books]

  Powered by Linux