android_device_samsung_mati.../init/init_matisse.cpp

134 lines
5.4 KiB
C++
Executable File

/*
Copyright (c) 2016, The Linux Foundation. All rights reserved.
Copyright (c) 2017-2018, The LineageOS 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 <fcntl.h>
#include <stdio.h>
#include <stdlib.h>
#include <unistd.h>
#include <sys/stat.h>
#include <sys/types.h>
#include <android-base/file.h>
#include <android-base/logging.h>
#include <android-base/properties.h>
#include <android-base/strings.h>
#define _REALLY_INCLUDE_SYS__SYSTEM_PROPERTIES_H_
#include <sys/_system_properties.h>
#include "property_service.h"
#include "vendor_init.h"
using android::base::GetProperty;
using android::base::ReadFileToString;
using android::base::Trim;
using android::init::property_set;
// copied from build/tools/releasetools/ota_from_target_files.py
// but with "." at the end and empty entry
std::vector<std::string> ro_product_props_default_source_order = {
"",
"product.",
"product_services.",
"odm.",
"vendor.",
"system.",
};
void property_override(char const prop[], char const value[], bool add = true)
{
auto pi = (prop_info *) __system_property_find(prop);
if (pi != nullptr) {
__system_property_update(pi, value, strlen(value));
} else if (add) {
__system_property_add(prop, strlen(prop), value, strlen(value));
}
}
void set_wifionly()
{
property_set("ro.carrier", "wifi-only");
property_set("ro.radio.noril", "1");
}
void vendor_load_properties()
{
const auto set_ro_product_prop = [](const std::string &source,
const std::string &prop, const std::string &value) {
auto prop_name = "ro.product." + source + prop;
property_override(prop_name.c_str(), value.c_str(), false);
};
std::string bootloader = GetProperty("ro.bootloader", "");
if (bootloader.find("T530NU") == 0) {
/* matissewifiue */
for (const auto &source : ro_product_props_default_source_order) {
set_ro_product_prop(source, "fingerprint", "samsung/matissewifiue/matissewifi:5.0.2/LRX22G/T530NUU1BOJ4:user/release-keys");
set_ro_product_prop(source, "model", "SM-T530NU");
set_ro_product_prop(source, "device", "matissewifi");
}
property_override("ro.build.description", "matissewifiue-user 5.0.2 LRX22G T530NUU1BOJ4 release-keys");
set_wifionly();
} else if (bootloader.find("T530XX") == 0) {
/* matissewifixx */
for (const auto &source : ro_product_props_default_source_order) {
set_ro_product_prop(source, "fingerprint", "samsung/matissewifixx/matissewifi:5.0.2/LRX22G/T530XXU1BOJ4:user/release-keys");
set_ro_product_prop(source, "model", "SM-T530");
set_ro_product_prop(source, "device", "matissewifi");
}
property_override("ro.build.description", "matissewifixx-user 5.0.2 LRX22G T530XXU1BOJ4 release-keys");
set_wifionly();
} else if (bootloader.find("T531XX") == 0) {
/* matisse3gxx */
for (const auto &source : ro_product_props_default_source_order) {
set_ro_product_prop(source, "fingerprint", "samsung/matisse3gxx/matisse3g:5.0.2/LRX22G/T531XXU1BOE6:user/release-keys");
set_ro_product_prop(source, "model", "SM-T531");
set_ro_product_prop(source, "device", "matisse3g");
}
property_override("ro.build.description", "matisse3gxx-user 5.0.2 LRX22G T531XXU1BOE6 release-keys");
} else if (bootloader.find("T535XX") == 0) {
/* matisseltexx */
for (const auto &source : ro_product_props_default_source_order) {
set_ro_product_prop(source, "fingerprint", "samsung/matisseltexx/matisselte:5.0.2/LRX22G/T535XXU1BOL1:user/release-keys");
set_ro_product_prop(source, "model", "SM-T535");
set_ro_product_prop(source, "device", "matisselte");
}
property_override("ro.build.description", "matisseltexx-user 5.0.2 LRX22G T535XXU1BOL1 release-keys");
} else {
set_wifionly();
}
std::string device = GetProperty("ro.product.device", "");
LOG(ERROR) << "Found bootloader id " << bootloader << " setting build properties for "
<< device << " device" << std::endl;
}