j7elte: Add vendor init
authorDario Trombello <dariotr@outlook.de>
Thu, 21 May 2020 20:57:27 +0000 (22:57 +0200)
committerDario Trombello <dariotr@outlook.de>
Sun, 24 May 2020 19:06:33 +0000 (21:06 +0200)
BoardConfig.mk
init/Android.mk [new file with mode: 0644]
init/init_sec.cpp [new file with mode: 0644]

index 607f60e62025783921fbdd1800b25750bd7390a9..841d073d589dfe3717dc5e24df028ac64ae44613 100644 (file)
@@ -17,5 +17,10 @@ include device/samsung/universal7580-common/BoardConfigCommon.mk
 
 LOCAL_PATH := device/samsung/j7elte
 
+TARGET_OTA_ASSERT_DEVICE := j7elte
+
 # Bluetooth
 BOARD_BLUETOOTH_BDROID_BUILDCFG_INCLUDE_DIR := $(LOCAL_PATH)/bluetooth
+
+# Init
+TARGET_INIT_VENDOR_LIB := libinit_sec
diff --git a/init/Android.mk b/init/Android.mk
new file mode 100644 (file)
index 0000000..ab4cf5d
--- /dev/null
@@ -0,0 +1,14 @@
+LOCAL_PATH := $(call my-dir)
+
+include $(CLEAR_VARS)
+
+LOCAL_MODULE_TAGS := optional
+LOCAL_C_INCLUDES := \
+    system/core/base/include \
+    system/core/init
+LOCAL_CFLAGS := -Wall -DANDROID_TARGET=\"$(TARGET_BOARD_PLATFORM)\"
+LOCAL_SRC_FILES := init_sec.cpp
+LOCAL_MODULE := libinit_sec
+LOCAL_STATIC_LIBRARIES += libbase
+
+include $(BUILD_STATIC_LIBRARY)
diff --git a/init/init_sec.cpp b/init/init_sec.cpp
new file mode 100644 (file)
index 0000000..a87faab
--- /dev/null
@@ -0,0 +1,117 @@
+/*
+   Copyright (c) 2016, The CyanogenMod Project. All rights reserved.
+
+   Redistribution and use in source and binary forms, with or without
+   modification, are permitted provided that the following conditions are
+   met:
+    * Redistributions of source code must retain the above copyright
+      notice, this list of conditions and the following disclaimer.
+    * Redistributions in binary form must reproduce the above
+      copyright notice, this list of conditions and the following
+      disclaimer in the documentation and/or other materials provided
+      with the distribution.
+    * Neither the name of The Linux Foundation nor the names of its
+      contributors may be used to endorse or promote products derived
+      from this software without specific prior written permission.
+
+   THIS SOFTWARE IS PROVIDED "AS IS" AND ANY EXPRESS OR IMPLIED
+   WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
+   MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT
+   ARE DISCLAIMED.  IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS
+   BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
+   CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
+   SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR
+   BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
+   WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE
+   OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN
+   IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
+ */
+
+#include <stdlib.h>
+#include <string.h>
+#define _REALLY_INCLUDE_SYS__SYSTEM_PROPERTIES_H_
+#include <sys/_system_properties.h>
+
+#include <android-base/file.h>
+#include <android-base/logging.h>
+#include <android-base/strings.h>
+#include <android-base/properties.h>
+
+#include "property_service.h"
+#include "vendor_init.h"
+
+using android::base::GetProperty;
+using android::base::ReadFileToString;
+using android::base::Trim;
+
+void property_override(char const prop[], char const value[])
+{
+    prop_info *pi;
+
+    pi = (prop_info*) __system_property_find(prop);
+    if (pi)
+        __system_property_update(pi, value, strlen(value));
+    else
+        __system_property_add(prop, strlen(prop), value, strlen(value));
+}
+
+void property_override_dual(char const system_prop[],
+        char const vendor_prop[], char const value[])
+{
+    property_override(system_prop, value);
+    property_override(vendor_prop, value);
+}
+
+void set_sim_info()
+{
+    const char *simslot_count_path = "/proc/simslot_count";
+    std::string simslot_count;
+    
+    if (ReadFileToString(simslot_count_path, &simslot_count)) {
+        simslot_count = Trim(simslot_count); // strip newline
+        property_override("ro.multisim.simslotcount", simslot_count.c_str());
+        if (simslot_count.compare("2") == 0) {
+            property_override("rild.libpath2", "/system/lib/libsec-ril-dsds.so");
+            property_override("persist.radio.multisim.config", "dsds");
+        }
+    }
+    else {
+        LOG(ERROR) << "Could not open '" << simslot_count_path << "'\n";
+    }
+}
+
+void vendor_load_properties()
+{
+    std::string platform;
+    std::string bootloader = GetProperty("ro.bootloader", "");
+    std::string device;
+
+    platform = GetProperty("ro.board.platform", "");
+    if (platform != ANDROID_TARGET)
+        return;
+
+    if (bootloader.find("J700F") != std::string::npos) {
+        /* SM-J700F */
+        property_override_dual("ro.build.fingerprint", "ro.vendor.build.fingerprint", "samsung/j7eltexx/j7elte:6.0.1/MMB29K/J700FXXU4BRL2:user/release-keys");
+        property_override("ro.build.description", "j7eltexx-user 6.0.1 MMB29K J700FXXU4BRL2 release-keys");
+        property_override_dual("ro.product.model", "ro.vendor.product.model", "SM-J700F");
+        property_override_dual("ro.product.device", "ro.vendor.product.device", "j7elte");
+    } else if (bootloader.find("J700M") != std::string::npos) {
+        /* SM-J700M */
+        property_override_dual("ro.build.fingerprint", "ro.vendor.build.fingerprint", "samsung/j7elteub/j7elte:6.0.1/MMB29K/J700MUBU2BSA1:user/release-keys");
+        property_override("ro.build.description", "j7elteub-user 6.0.1 MMB29K J700MUBU2BSA1 release-keys");
+        property_override_dual("ro.product.model", "ro.vendor.product.model", "SM-J700M");
+        property_override_dual("ro.product.device", "ro.vendor.product.device", "j7elte");
+    } else if (bootloader.find("J700H") != std::string::npos) {
+        /* SM-J700H */
+        property_override_dual("ro.build.fingerprint", "ro.vendor.build.fingerprint", "samsung/j7e3gxx/j7e3g:6.0.1/MMB29K/J700HXXS3BRL1:user/release-keys");
+        property_override("ro.build.description", "j7e3gxx-user 6.0.1 MMB29K J700HXXS3BRL1 release-keys");
+        property_override_dual("ro.product.model", "ro.vendor.product.model", "SM-J700H");
+        property_override_dual("ro.product.device", "ro.vendor.product.device", "j7e3g");
+    }
+
+    set_sim_info();
+
+    device = GetProperty("ro.product.device", "");
+    LOG(ERROR) << "Found bootloader id '" << bootloader.c_str() << "' setting build properties for '" << device.c_str() << "' device\n";
+}