remove 30GB userdata

This commit is contained in:
Adeeb Shihadeh
2026-03-08 11:50:41 -07:00
parent b25558e325
commit b14ff7b971
2 changed files with 1 additions and 2 deletions

View File

@@ -49,7 +49,7 @@ function create_image() {
rm -rf $WORKDIR
}
for sz in 30 89 90; do
for sz in 89 90; do
echo "Building ${sz}GB userdata image"
create_image ${sz}G
done

View File

@@ -58,7 +58,6 @@ PARTITIONS = [
Partition('system', OUTPUT_DIR / 'system.img', True, True, False, True),
Partition('userdata_90', OUTPUT_DIR / 'userdata_90.img', False, False, True, True),
Partition('userdata_89', OUTPUT_DIR / 'userdata_89.img', False, False, True, True),
Partition('userdata_30', OUTPUT_DIR / 'userdata_30.img', False, False, True, True),
]