partsize: Use a range of sizes for emmc values
Change-Id: I03491d70bee87738afa42ed9b68c740436b797c0
diff --git a/flash.sh b/flash.sh
index 2f3d25f..1669d17 100755
--- a/flash.sh
+++ b/flash.sh
@@ -14,14 +14,13 @@
fi
function partition_table_image {
- case $1 in
- 7818182656)
- echo "partition-table-8gb.img" ;;
- 15634268160)
- echo "partition-table-16gb.img" ;;
- 62537072640)
- echo "partition-table-64gb.img" ;;
- esac
+ if [[ $1 -gt 7000000000 ]] && [[ $1 -lt 8000000000 ]]; then
+ echo "partition-table-8gb.img"
+ elif [[ $1 -gt 14000000000 ]] && [[ $1 -lt 17000000000 ]]; then
+ echo "partition-table-16gb.img"
+ elif [[ $1 -gt 60000000000 ]]; then
+ echo "partition-table-64gb.img"
+ fi
}
# Flash bootloader