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