diff options
author | Sam Protsenko <semen.protsenko@linaro.org> | 2018-12-11 18:20:21 +0200 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2018-12-17 08:42:19 -0500 |
commit | 528920f94ef22f9e5cf183cc193246e01280c65e (patch) | |
tree | 85c8516789c235587fb39454d9f5e39dc9030440 /include | |
parent | a267699bea1f46a849e788f277e7166f6244918d (diff) | |
download | u-boot-528920f94ef22f9e5cf183cc193246e01280c65e.tar.gz u-boot-528920f94ef22f9e5cf183cc193246e01280c65e.tar.bz2 u-boot-528920f94ef22f9e5cf183cc193246e01280c65e.zip |
arm: ti: boot: Increase system partition size
Android code base is growing, so since Android "Pie" the size of
system.img grew up to be about 740 MiB. Let's increase system.img to
1 GiB to accommodate for those changes and leave some margin for future
changes. We don't want to make it more than 1 GiB, because we should
keep userdata partition big enough (for user files, like media etc.),
and eMMC size on BeagleBoard-X15 is only 3.5 GiB.
Signed-off-by: Sam Protsenko <semen.protsenko@linaro.org>
Acked-by: Praneeth Bajjuri <praneeth@ti.com>
Diffstat (limited to 'include')
-rw-r--r-- | include/environment/ti/boot.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/environment/ti/boot.h b/include/environment/ti/boot.h index 5891009a5a..86ff6d3ea7 100644 --- a/include/environment/ti/boot.h +++ b/include/environment/ti/boot.h @@ -41,7 +41,7 @@ "name=crypto,size=16K,uuid=${uuid_gpt_crypto};" \ "name=recovery,size=40M,uuid=${uuid_gpt_recovery};" \ "name=boot,size=10M,uuid=${uuid_gpt_boot};" \ - "name=system,size=768M,uuid=${uuid_gpt_system};" \ + "name=system,size=1024M,uuid=${uuid_gpt_system};" \ "name=vendor,size=256M,uuid=${uuid_gpt_vendor};" \ "name=cache,size=256M,uuid=${uuid_gpt_cache};" \ "name=ipu1,size=1M,uuid=${uuid_gpt_ipu1};" \ |