vendor: init: Update to LA.VENDOR.1.0.r2-10200-WAIPIO.QSSI13.0

Change-Id: I8e2c4f76c53043842b512f51dd9711c41b447195
This commit is contained in:
Jake Weinstein 2024-05-19 00:11:47 +09:00
parent 584e5bf68b
commit 7c03436f28
1 changed files with 6 additions and 6 deletions

View File

@ -149,19 +149,19 @@ function configure_memory_parameters() {
# Set Memory parameters.
configure_memory_parameters
if [ -f /sys/devices/soc0/soc_id ]; then
platformid=`cat /sys/devices/soc0/soc_id`
if [ -f /sys/devices/soc0/chip_family ]; then
chipfamily=`cat /sys/devices/soc0/chip_family`
fi
case "$platformid" in
"537" | "583" | "613" | "631" | "633" | "634" | "638")
case "$chipfamily" in
"0x84")
/vendor/bin/sh /vendor/bin/init.kernel.post_boot-parrot.sh
;;
"568" | "602" | "581" | "582")
"0x8d")
/vendor/bin/sh /vendor/bin/init.kernel.post_boot-ravelin.sh
;;
*)
echo "***WARNING***: Invalid SoC ID\n\t No postboot settings applied!!\n"
echo "***WARNING***: Invalid chip family\n\t No postboot settings applied!!\n"
;;
esac