rosemary: Update blobs from V13.0.6.0
This commit is contained in:
17
proprietary/vendor/bin/chipinfo
vendored
Executable file
17
proprietary/vendor/bin/chipinfo
vendored
Executable file
@@ -0,0 +1,17 @@
|
||||
#!/vendor/bin/sh
|
||||
|
||||
default_fact_prop=$(getprop ro.soc.manufacturer)
|
||||
|
||||
if [ "$default_soc_prop" == "" ]; then
|
||||
fact_val=$(cat /sys/devices/soc0/family)
|
||||
/vendor/bin/setprop ro.vendor.soc.manufacturer ${fact_val}
|
||||
fi
|
||||
|
||||
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}
|
||||
fi
|
||||
|
||||
/vendor/bin/setprop ro.vendor.soc.model_ready 1
|
||||
Reference in New Issue
Block a user