rosemary: Update blobs from V14.0.17.0.TFFMIXM

This commit is contained in:
Matsvei Niaverau
2025-12-31 03:44:06 +01:00
parent e34a985fa4
commit 97010e8921
345 changed files with 1652 additions and 1265 deletions
+15 -1
View File
@@ -2,7 +2,7 @@
default_fact_prop=$(getprop ro.soc.manufacturer)
if [ "$default_soc_prop" == "" ]; then
if [ "$default_fact_prop" == "" ]; then
fact_val=$(cat /sys/devices/soc0/family)
/vendor/bin/setprop ro.vendor.soc.manufacturer ${fact_val}
fi
@@ -12,6 +12,20 @@ default_soc_prop=$(getprop ro.soc.model)
if [ "$default_soc_prop" == "" ]; then
soc_val=$(cat /sys/devices/soc0/soc_id)
/vendor/bin/setprop ro.vendor.soc.model ${soc_val}
else
soc_val="$default_soc_prop"
fi
soc_ext_val=$(cat /proc/device-tree/model-external-name 2>/dev/null)
if [ -z "$soc_ext_val" ]; then
soc_ext_val=${soc_val}
fi
/vendor/bin/setprop ro.vendor.soc.model.external_name ${soc_ext_val}
soc_part_val=$(cat /proc/device-tree/model-part-name 2>/dev/null)
if [ -z "$soc_part_val" ]; then
soc_part_val=${soc_val}
fi
/vendor/bin/setprop ro.vendor.soc.model.part_name ${soc_part_val}
/vendor/bin/setprop ro.vendor.soc.model_ready 1