Get potential slot info

This commit is contained in:
topjohnwu 2017-11-09 03:05:25 +08:00
parent 72b5985398
commit 1d3d30fa45
1 changed files with 2 additions and 1 deletions

View File

@ -41,7 +41,8 @@ ui_print() {
mount_partitions() {
# Check A/B slot
SLOT=`getprop ro.boot.slot_suffix`
[ -z $SLOT ] || ui_print "- A/B partition detected, current slot: $SLOT"
[ -z $SLOT ] && SLOT=_`getprop ro.boot.slot`
[ $SLOT = "_" ] || ui_print "- A/B partition detected, current slot: $SLOT"
ui_print "- Mounting /system, /vendor"
is_mounted /system || [ -f /system/build.prop ] || mount -o ro /system 2>/dev/null
if ! is_mounted /system && ! [ -f /system/build.prop ]; then