diff options
author | Marcel Ziswiler <marcel.ziswiler@toradex.com> | 2016-12-22 11:16:08 +0100 |
---|---|---|
committer | Stefan Agner <stefan.agner@toradex.com> | 2017-01-10 16:54:56 -0800 |
commit | 4b22d1e7dc2043892bd0b867c315f61685c73366 (patch) | |
tree | c4d31e80819b9a6213a9e7f41548d83d01ebe63d /recipes-images | |
parent | ad38bb69f1470d8e52ea250a64529ac60cf61f33 (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>
Diffstat (limited to 'recipes-images')
-rwxr-xr-x | recipes-images/images/files/library/tegra/update.sh | 2 |
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" |