summaryrefslogtreecommitdiffstats
path: root/data.cpp
diff options
context:
space:
mode:
authorAnatoly Smaznov <mrjavum@gmail.com>2013-02-12 07:33:40 +0100
committerDees_Troy <dees_troy@teamw.in>2013-02-19 18:20:04 +0100
commit10c11f67cfe2b2a398a4bde5deb355b58f833002 (patch)
tree31b01f3f307a69ccf9d1bd6cfde22749c2dd8e7b /data.cpp
parentMinor fix for listbox code (diff)
downloadandroid_bootable_recovery-10c11f67cfe2b2a398a4bde5deb355b58f833002.tar
android_bootable_recovery-10c11f67cfe2b2a398a4bde5deb355b58f833002.tar.gz
android_bootable_recovery-10c11f67cfe2b2a398a4bde5deb355b58f833002.tar.bz2
android_bootable_recovery-10c11f67cfe2b2a398a4bde5deb355b58f833002.tar.lz
android_bootable_recovery-10c11f67cfe2b2a398a4bde5deb355b58f833002.tar.xz
android_bootable_recovery-10c11f67cfe2b2a398a4bde5deb355b58f833002.tar.zst
android_bootable_recovery-10c11f67cfe2b2a398a4bde5deb355b58f833002.zip
Diffstat (limited to 'data.cpp')
-rw-r--r--data.cpp28
1 files changed, 28 insertions, 0 deletions
diff --git a/data.cpp b/data.cpp
index 56df3504b..9e9120cb8 100644
--- a/data.cpp
+++ b/data.cpp
@@ -41,6 +41,10 @@
#include "partitions.hpp"
#include "twrp-functions.hpp"
+#ifdef TW_USE_MODEL_HARDWARE_ID_FOR_DEVICE_ID
+ #include "cutils/properties.h"
+#endif
+
extern "C"
{
#include "common.h"
@@ -90,6 +94,30 @@ void DataManager::get_device_id(void) {
// Assign a blank device_id to start with
device_id[0] = 0;
+
+#ifdef TW_USE_MODEL_HARDWARE_ID_FOR_DEVICE_ID
+ // Now we'll use product_model_hardwareid as device id
+ char model_id[PROPERTY_VALUE_MAX];
+ property_get("ro.product.model", model_id, "error");
+ if (strcmp(model_id,"error") != 0) {
+ LOGI("=> product model: '%s'\n", model_id);
+ // Replace spaces with underscores
+ for(int i = 0; i < strlen(model_id); i++) {
+ if(model_id[i] == ' ')
+ model_id[i] = '_';
+ }
+ strcpy(device_id, model_id);
+ if (hardware_id[0] != 0) {
+ strcat(device_id, "_");
+ strcat(device_id, hardware_id);
+ }
+ sanitize_device_id((char *)device_id);
+ mConstValues.insert(make_pair("device_id", device_id));
+ LOGI("=> using device id: '%s'\n", device_id);
+ return;
+ }
+#endif
+
#ifndef TW_FORCE_CPUINFO_FOR_DEVICE_ID
// First, try the cmdline to see if the serial number was supplied
fp = fopen("/proc/cmdline", "rt");