summaryrefslogtreecommitdiffstats
path: root/bdaddr_read/Android.mk
diff options
context:
space:
mode:
authorPawit Pornkitprasan <p.pawit@gmail.com>2011-07-24 16:42:11 +0700
committerPawit Pornkitprasan <p.pawit@gmail.com>2011-07-24 17:24:34 +0700
commita8fb4a0032db58633914c3c2e3150aef28146a0b (patch)
treec9ddd5790ec024d0cf744acb82fc7fb1b0292524 /bdaddr_read/Android.mk
parentb1d56f678126fc1b6c8c4d768c2d0c0507a1ee02 (diff)
downloaddevice_samsung_aries-common-a8fb4a0032db58633914c3c2e3150aef28146a0b.zip
device_samsung_aries-common-a8fb4a0032db58633914c3c2e3150aef28146a0b.tar.gz
device_samsung_aries-common-a8fb4a0032db58633914c3c2e3150aef28146a0b.tar.bz2
Enable proper bluetooth MAC address on aries devices (1/5)
The approach here is to used bdaddr_read.c to read the MAC address (it's in a different format than ro.bt.bdaddr_path accepts) at /efs/imei/bt.txt and write it to /data/bdaddr and set ro.bt.bdaddr_path there. This approach was used with device/lge/thunderg and bdaddr_read.c was adapted from there. Change-Id: Ide75a0d6074506cc93b9c11af667f62e7460faa2
Diffstat (limited to 'bdaddr_read/Android.mk')
-rw-r--r--bdaddr_read/Android.mk28
1 files changed, 28 insertions, 0 deletions
diff --git a/bdaddr_read/Android.mk b/bdaddr_read/Android.mk
new file mode 100644
index 0000000..46f95cd
--- /dev/null
+++ b/bdaddr_read/Android.mk
@@ -0,0 +1,28 @@
+# Copyright (C) 2010 Ricardo Cerqueira
+# Copyright (C) 2011 Pawit Pornkitprasan
+#
+# Licensed under the Apache License, Version 2.0 (the "License");
+# you may not use this file except in compliance with the License.
+# You may obtain a copy of the License at
+#
+# http://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing, software
+# distributed under the License is distributed on an "AS IS" BASIS,
+# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+# See the License for the specific language governing permissions and
+# limitations under the License.
+
+LOCAL_PATH:= $(call my-dir)
+include $(CLEAR_VARS)
+
+LOCAL_MODULE_TAGS := optional
+
+LOCAL_SRC_FILES := bdaddr_read.c
+
+LOCAL_SHARED_LIBRARIES := libcutils
+
+LOCAL_MODULE := bdaddr_read
+
+include $(BUILD_EXECUTABLE)
+