From 87dcc8035f22d5f03ecf50ea48ec53afa48e68cf Mon Sep 17 00:00:00 2001 From: Christopher Roy Bratusek Date: Tue, 29 Sep 2020 19:59:45 +0200 Subject: [PATCH] CommonInstaller: ensure we mount system_SLOT and vendor_SLOT --- CommonInstaller | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/CommonInstaller b/CommonInstaller index 8ef7810..c43dd7c 100644 --- a/CommonInstaller +++ b/CommonInstaller @@ -248,7 +248,7 @@ mount_partitions () { is_mounted /data || mount /data || error "failed to mount /data!" mount -o bind /dev/urandom /dev/random - ! is_mounted /system && mount -o rw /system + ! is_mounted /system && mount -o rw /system${SLOT} ! is_mounted /system && mount -o rw ${SYSTEM_BLOCK} /system ! is_mounted /system && error "failed to mount /system!" @@ -265,7 +265,7 @@ mount_partitions () { VENDOR_BLOCK=$(readlink -f ${vendor_tmp}) echo " INFO: #7 [VENDOR_BLOCK] ${VENDOR_BLOCK}" - ! is_mounted /vendor && mount -o ro /vendor || mount -o ro ${VENDOR_BLOCK} /vendor + ! is_mounted /vendor && mount -o ro /vendor${SLOT} || mount -o ro ${VENDOR_BLOCK} /vendor if [ -d /system/vendor ]; then ### XXX work-around required for some ROMs