10 lines
265 B
Bash
Executable File
10 lines
265 B
Bash
Executable File
#!/system/bin/sh
|
|
|
|
if getprop ro.vendor.build.fingerprint | grep -iq -e S22FLIP; then
|
|
if getprop ro.vendor.gsi.image_running | awk '!/false/'; then
|
|
setprop ro.vendor.gsi.image_running false
|
|
setprop ctl.restart vendor.hwcomposer-2-1
|
|
touch /mnt/banana
|
|
fi
|
|
fi
|