summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMarcel Ziswiler <marcel.ziswiler@toradex.com>2016-12-22 11:16:08 +0100
committerStefan Agner <stefan.agner@toradex.com>2017-01-10 16:54:56 -0800
commit4b22d1e7dc2043892bd0b867c315f61685c73366 (patch)
treec4d31e80819b9a6213a9e7f41548d83d01ebe63d
parentad38bb69f1470d8e52ea250a64529ac60cf61f33 (diff)
tegra: update.sh: Remove Colibri T30 eMMC partition resizing limit of 2GB
Currently our update.sh script limits the partition size to around 2GB by default so even after our automatic resizing only 2GB of the 4GB of available eMMC space can be used. Set a higher and saner default EMMC_SIZE to allow automatic resizing to the full EMMC space available. Signed-off-by: Marcel Ziswiler <marcel.ziswiler@toradex.com> Acked-by: Max Krummenacher <max.krummenacher@toradex.com>
-rwxr-xr-xrecipes-images/images/files/library/tegra/update.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/recipes-images/images/files/library/tegra/update.sh b/recipes-images/images/files/library/tegra/update.sh
index a07b005..a425847 100755
--- a/recipes-images/images/files/library/tegra/update.sh
+++ b/recipes-images/images/files/library/tegra/update.sh
@@ -234,7 +234,7 @@ case "$MODTYPE" in
# BCT=colibri_t30_12MHz_NT5CC256M16CP-DI_533MHz.bct
CBOOT_IMAGE=colibri_t30.img
CBOOT_IMAGE_TARGET=tegra30
- EMMC_SIZE=$(expr 1024 \* 2000 \* 2)
+ EMMC_SIZE=$(expr 1024 \* 3640 \* 2)
IMAGEFILE=root.ext3
KERNEL_DEVICETREE="tegra30-colibri-eval-v3.dtb"
LOCPATH="tegra-uboot-flasher"