diff mbox series

[U-Boot] spl: TI: Do not default to SPL_FIT_IMAGE_TINY being enabled

Message ID 1511834188-21225-1-git-send-email-trini@konsulko.com
State Superseded
Delegated to: Tom Rini
Headers show
Series [U-Boot] spl: TI: Do not default to SPL_FIT_IMAGE_TINY being enabled | expand

Commit Message

Tom Rini Nov. 28, 2017, 1:56 a.m. UTC
This option prevents booting on am335x_evm at least along with most
likely other platforms.

Fixes: 337bbb629777 ("spl: fit: add SPL_FIT_IMAGE_TINY config to reduce code-size")
Signed-off-by: Tom Rini <trini@konsulko.com>
---
 common/spl/Kconfig | 1 -
 1 file changed, 1 deletion(-)

Comments

Tom Rini Nov. 28, 2017, 2:19 p.m. UTC | #1
On Mon, Nov 27, 2017 at 08:56:28PM -0500, Tom Rini wrote:

> This option prevents booting on am335x_evm at least along with most
> likely other platforms.
> 
> Fixes: 337bbb629777 ("spl: fit: add SPL_FIT_IMAGE_TINY config to reduce code-size")
> Signed-off-by: Tom Rini <trini@konsulko.com>

Applied to u-boot/master, thanks!
diff mbox series

Patch

diff --git a/common/spl/Kconfig b/common/spl/Kconfig
index b1ee15c96d13..aef0034b3356 100644
--- a/common/spl/Kconfig
+++ b/common/spl/Kconfig
@@ -232,7 +232,6 @@  config SPL_FIT_IMAGE_TINY
 	bool "Remove functionality from SPL FIT loading to reduce size"
 	depends on SPL_FIT
 	default y if MACH_SUN50I || MACH_SUN50I_H5
-	default y if ARCH_OMAP2PLUS
 	help
 	  Enable this to reduce the size of the FIT image loading code
 	  in SPL, if space for the SPL binary is very tight.