1
0
Fork 0

Match wrimg.sh vendor partition size check to the new 512M size

This commit is contained in:
Brendan Szymanski 2026-07-13 13:23:23 -04:00
parent 9011825dd7
commit 11b43ccd36

View file

@ -30,7 +30,7 @@ check_device() {
if [ $(echo ${PARTITION2} | awk {'print $1'}) != "system" ] || [ $(echo ${PARTITION2} | awk {'print $2'}) != "3221225472" ]; then
return 1
fi
if [ $(echo ${PARTITION3} | awk {'print $1'}) != "vendor" ] || [ $(echo ${PARTITION3} | awk {'print $2'}) != "402653184" ]; then
if [ $(echo ${PARTITION3} | awk {'print $1'}) != "vendor" ] || [ $(echo ${PARTITION3} | awk {'print $2'}) != "536870912" ]; then
return 1
fi
if [ $(echo ${PARTITION4} | awk {'print $1'}) != "metadata" ] || [ $(echo ${PARTITION4} | awk {'print $2'}) != "16777216" ]; then