mirror of
https://github.com/topjohnwu/Magisk.git
synced 2024-11-23 18:15:30 +00:00
fix LG bump support for uninstaller
This commit is contained in:
parent
5ac68f8df8
commit
bae2c9bc63
@ -101,10 +101,19 @@ LGE_G=false
|
|||||||
RBRAND=$(grep_prop ro.product.brand)
|
RBRAND=$(grep_prop ro.product.brand)
|
||||||
RMODEL=$(grep_prop ro.product.device)
|
RMODEL=$(grep_prop ro.product.device)
|
||||||
if [ "$RBRAND" = "lge" ] || [ "$RBRAND" = "LGE" ]; then
|
if [ "$RBRAND" = "lge" ] || [ "$RBRAND" = "LGE" ]; then
|
||||||
if [ "$RMODEL" = "*D80*" ] ||
|
if [ "$RMODEL" = "d800" ] ||
|
||||||
[ "$RMODEL" = "*S98*" ] ||
|
[ "$RMODEL" = "d801" ] ||
|
||||||
[ "$RMODEL" = "*D85*" ] ||
|
[ "$RMODEL" = "d802" ] ||
|
||||||
[ "$RMODEL" = "*F40*" ]; then
|
[ "$RMODEL" = "d803" ] ||
|
||||||
|
[ "$RMODEL" = "ls980" ] ||
|
||||||
|
[ "$RMODEL" = "vs980" ] ||
|
||||||
|
[ "$RMODEL" = "l01f" ] ||
|
||||||
|
[ "$RMODEL" = "d850" ] ||
|
||||||
|
[ "$RMODEL" = "d852" ] ||
|
||||||
|
[ "$RMODEL" = "d855" ] ||
|
||||||
|
[ "$RMODEL" = "ls990" ] ||
|
||||||
|
[ "$RMODEL" = "vs985" ] ||
|
||||||
|
[ "$RMODEL" = "f400" ]; then
|
||||||
LGE_G=true
|
LGE_G=true
|
||||||
ui_print "! Bump device detected"
|
ui_print "! Bump device detected"
|
||||||
fi
|
fi
|
||||||
|
Loading…
Reference in New Issue
Block a user