diff options
author | 2020-05-26 18:01:19 -0300 | |
---|---|---|
committer | 2020-06-01 22:06:30 +0200 | |
commit | 94bb56719db58d0ec64f5f4cdeef6e43372086ec (patch) | |
tree | 33e4ef05e0e3750ec90bf33a0b27a2364daa3f3f | |
parent | beeb15f4e6996e17544e2f76267c13a5bd8bb00c (diff) | |
download | buildroot-94bb56719db58d0ec64f5f4cdeef6e43372086ec.tar.gz buildroot-94bb56719db58d0ec64f5f4cdeef6e43372086ec.tar.bz2 |
board/freescale: increase the vfat size
The default iamge size is 32MiB, which is quite low by today's standards.
Besides, the AArch64 kernels are relatively big, which leaves not much
room, if at all, for users to experiment on the default image.
Increase the vfat size to a more reasonable 64MiB.
Note that users who derive an in-tree defconfig for their own case will
allways hit any arbitarary size we put here, so they will anyway have to
also derive this template for their own use-cases.
Signed-off-by: Fabio Estevam <festevam@gmail.com>
Signed-off-by: Yann E. MORIN <yann.morin.1998@free.fr>
(cherry picked from commit 7d804aba66fbed7df6cf0caa845b6c52f7ff1f7e)
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
-rw-r--r-- | board/freescale/common/imx/genimage.cfg.template_imx8 | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/board/freescale/common/imx/genimage.cfg.template_imx8 b/board/freescale/common/imx/genimage.cfg.template_imx8 index bd5f6cdc73..75f182be66 100644 --- a/board/freescale/common/imx/genimage.cfg.template_imx8 +++ b/board/freescale/common/imx/genimage.cfg.template_imx8 @@ -13,7 +13,7 @@ image boot.vfat { %FILES% } } - size = 32M + size = 64M } image sdcard.img { |