diff options
author | David Lechner <david@lechnology.com> | 2018-05-19 23:25:03 -0500 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2018-06-05 10:33:57 -0400 |
commit | 1374d88bf391e4b1a23d55eab4d469b68fd7fc4b (patch) | |
tree | d103b91a2849043c0449697ad431d8933b7dcf20 /include/configs/legoev3.h | |
parent | 89d811eee694ebd7dee0766e90552b91e89f60fb (diff) | |
download | u-boot-1374d88bf391e4b1a23d55eab4d469b68fd7fc4b.tar.gz |
ARM: legoev3: increase flash image sizes
This increases the kernel image to 4M and the rootfs image to 10M.
It is getting hard to get a kernel image to fit in 3M.
Signed-off-by: David Lechner <david@lechnology.com>
Diffstat (limited to 'include/configs/legoev3.h')
-rw-r--r-- | include/configs/legoev3.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/configs/legoev3.h b/include/configs/legoev3.h index 542b8f072c..812fd0c14a 100644 --- a/include/configs/legoev3.h +++ b/include/configs/legoev3.h @@ -164,7 +164,7 @@ "mmcargs=setenv bootargs mem=${memsize} console=${console} root=/dev/mmcblk0p2 rw rootwait lpj=747520\0" \ "mmcboot=bootm ${loadaddr}\0" \ "flashargs=setenv bootargs mem=${memsize} initrd=${filesysaddr},${filesyssize} root=/dev/ram0 rw rootfstype=squashfs console=${console} lpj=747520\0" \ - "flashboot=sf probe 0; sf read ${loadaddr} 0x50000 0x300000; sf read ${filesysaddr} 0x350000 0x960000; bootm ${loadaddr}\0" \ + "flashboot=sf probe 0; sf read ${loadaddr} 0x50000 0x400000; sf read ${filesysaddr} 0x450000 0xA00000; bootm ${loadaddr}\0" \ "loadimage=fatload mmc 0 ${loadaddr} uImage\0" \ "loadbootscr=fatload mmc 0 ${bootscraddr} boot.scr\0" \ "bootscript=source ${bootscraddr}\0" \ |