Match wrimg.sh vendor partition size check to the new 512M size
This commit is contained in:
parent
9011825dd7
commit
11b43ccd36
1 changed files with 1 additions and 1 deletions
2
wrimg.sh
2
wrimg.sh
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue