diff options
author | Tom Rini <trini@konsulko.com> | 2016-07-27 22:29:41 -0400 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2016-08-05 07:27:29 -0400 |
commit | 7d106242d3fc095d1065ef65a31661c3b8d77a78 (patch) | |
tree | a889d07274ad96352e6c7590b64be6dbdf4a8e19 /arch/arm | |
parent | a2ea62e8264f8ab5bf55ad3c2249c640ac48c803 (diff) | |
download | u-boot-imx-7d106242d3fc095d1065ef65a31661c3b8d77a78.zip u-boot-imx-7d106242d3fc095d1065ef65a31661c3b8d77a78.tar.gz u-boot-imx-7d106242d3fc095d1065ef65a31661c3b8d77a78.tar.bz2 |
omap3, omap4: Enable USE_TINY_PRINTF for all
In the case of omap3 we have a number of platforms that are close to
exceeding SRAM limits, depending on compiler. Move to USE_TINY_PRINTF
to give them more room. OMAP4 will soon enough be in a similar place,
so enable that now.
Signed-off-by: Tom Rini <trini@konsulko.com>
Diffstat (limited to 'arch/arm')
-rw-r--r-- | arch/arm/Kconfig | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/arch/arm/Kconfig b/arch/arm/Kconfig index 5eb72f7..5ac9401 100644 --- a/arch/arm/Kconfig +++ b/arch/arm/Kconfig @@ -555,11 +555,13 @@ config OMAP34XX bool "OMAP34XX SoC" select CPU_V7 select SUPPORT_SPL + select USE_TINY_PRINTF config OMAP44XX bool "OMAP44XX SoC" select CPU_V7 select SUPPORT_SPL + select USE_TINY_PRINTF config OMAP54XX bool "OMAP54XX SoC" |