diff options
| author | LuK1337 <priv.luk@gmail.com> | 2015-12-12 00:02:27 +0100 |
|---|---|---|
| committer | RolanDroid <rolandosimoncelli8@gmail.com> | 2015-12-20 18:05:15 +0100 |
| commit | bf10b0fb5f1726e7f1d32dcbfe00509b0ad9b802 (patch) | |
| tree | 78438165deccd902e9eb8990e311e9bbec272d37 | |
| parent | 93d556b4259799ac800e8204188257e80506c990 (diff) | |
thea: init: Unify XT1077 and XT1079
Change-Id: I7e7ee6d854f316d2aa98ae1e19119f1ebd8870f5
| -rw-r--r-- | init/init_thea.cpp | 13 |
1 files changed, 2 insertions, 11 deletions
diff --git a/init/init_thea.cpp b/init/init_thea.cpp index ca3f448..5870b9d 100644 --- a/init/init_thea.cpp +++ b/init/init_thea.cpp @@ -68,8 +68,8 @@ void init_msm_properties(unsigned long msm_id, unsigned long msm_ver, char *boar property_set("ro.build.product", "thea"); property_set("ro.mot.build.customerid", "retgball"); property_set("ro.product.device", "thea"); - } else if (ISMATCH(radio, "0xE")) { - /* XT1077 */ + } else if (ISMATCH(radio, "0xE") || ISMATCH(radio, "0xD")) { + /* XT1077 | XT1079 */ cdma_properties("0", "10"); property_set("ro.build.description", "thea_retcn_ds-user 6.0 MPB24.65-10 10 release-keys"); property_set("ro.build.fingerprint", "motorola/thea_retcn_ds/thea_ds:6.0/MPB24.65-10/10:user/release-keys"); @@ -84,15 +84,6 @@ void init_msm_properties(unsigned long msm_id, unsigned long msm_ver, char *boar property_set("ro.build.product", "thea_umtsds"); property_set("ro.mot.build.customerid", "netbr"); property_set("ro.product.device", "thea_umtsds"); - } else if (ISMATCH(radio, "0xD")) { - /* XT1079 */ - cdma_properties("0", "20"); - property_set("ro.build.description", "thea_retcn_ds-user 6.0 MPB24.65-10 10 release-keys"); - property_set("ro.build.fingerprint", "motorola/thea_retcn_ds/thea_ds:6.0/MPB24.65-10/10:user/release-keys"); - property_set("ro.build.product", "thea_ds"); - property_set("ro.com.android.dataroaming", "false"); - property_set("ro.mot.build.customerid", "retcn"); - property_set("ro.product.device", "thea_ds"); } property_get("ro.product.device", device); |
