diff mbox

[U-Boot,1/1] am335x_evm_usbspl: Remove other SPL modes

Message ID 1425919236-22116-1-git-send-email-trini@konsulko.com
State Accepted
Delegated to: Tom Rini
Headers show

Commit Message

Tom Rini March 9, 2015, 4:40 p.m. UTC
The purpose of this build target is to do SPL over USB RNDIS.  We remove
YMODEM, MMC and NAND (and re-set ENV to be built-in) as when those are needed
we can use the other build targets.  This brings us well under size limit again.

Signed-off-by: Tom Rini <trini@konsulko.com>
---
 include/configs/am335x_evm.h | 6 ++++++
 1 file changed, 6 insertions(+)

Comments

Tom Rini March 15, 2015, 9:50 p.m. UTC | #1
On Mon, Mar 09, 2015 at 12:40:36PM -0400, Tom Rini wrote:

> The purpose of this build target is to do SPL over USB RNDIS.  We remove
> YMODEM, MMC and NAND (and re-set ENV to be built-in) as when those are needed
> we can use the other build targets.  This brings us well under size limit again.
> 
> Signed-off-by: Tom Rini <trini@konsulko.com>

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

Patch

diff --git a/include/configs/am335x_evm.h b/include/configs/am335x_evm.h
index f1c270c..a87059c 100644
--- a/include/configs/am335x_evm.h
+++ b/include/configs/am335x_evm.h
@@ -340,6 +340,12 @@ 
 #endif /* CONFIG_MUSB_GADGET */
 
 #if defined(CONFIG_SPL_BUILD) && defined(CONFIG_SPL_USBETH_SUPPORT)
+/* Remove other SPL modes. */
+#undef CONFIG_SPL_YMODEM_SUPPORT
+#undef CONFIG_SPL_NAND_SUPPORT
+#undef CONFIG_SPL_MMC_SUPPORT
+#define CONFIG_ENV_IS_NOWHERE
+#undef CONFIG_ENV_IS_IN_NAND
 /* disable host part of MUSB in SPL */
 #undef CONFIG_MUSB_HOST
 /* disable EFI partitions and partition UUID support */