mirror of
https://github.com/kdrag0n/safetynet-fix.git
synced 2024-11-19 20:16:59 +00:00
Remove security patch fixup script
This is causing more issues than it fixes. Fixes #1.
This commit is contained in:
parent
e82c3d0674
commit
21d4d1d863
@ -1,12 +0,0 @@
|
||||
#!/system/bin/sh
|
||||
|
||||
set -eufo pipefail
|
||||
|
||||
system_patch="$(getprop ro.build.version.security_patch)"
|
||||
vendor_patch="$(getprop ro.vendor.build.security_patch)"
|
||||
|
||||
# Fix mismatching security patch levels if vendor patch is not empty
|
||||
if [[ ! -z "$vendor_patch" ]] && [[ "$system_patch" != "$vendor_patch" ]]; then
|
||||
resetprop ro.build.version.security_patch "$vendor_patch"
|
||||
resetprop ro.build.version.real_security_patch "$system_patch"
|
||||
fi
|
Loading…
Reference in New Issue
Block a user