2015-06-23 11:56:52 +02:00
|
|
|
From 06b07abc2932582fceeb87d8888dff1d5853df83 Mon Sep 17 00:00:00 2001
|
|
|
|
From: Guillaume GARDET <guillaume.gardet@free.fr>
|
|
|
|
Date: Tue, 16 Jun 2015 12:26:52 +0200
|
|
|
|
Subject: [U-Boot] [PATCH 1/2] ti: armv7: enable EXT support in SPL
|
|
|
|
(using ti_armv7_common.h)
|
|
|
|
|
|
|
|
Tested on Pandaboard (rev. A3) and Beagleboard xM (rev. B).
|
|
|
|
Compilation tested on TI armv7 boards and OMAP boards from other vendors.
|
|
|
|
|
|
|
|
Signed-off-by: Guillaume GARDET <guillaume.gardet@free.fr>
|
|
|
|
Cc: Tom Rini <trini@konsulko.com>
|
|
|
|
|
|
|
|
---
|
|
|
|
include/configs/ti_armv7_common.h | 5 +++++
|
|
|
|
1 file changed, 5 insertions(+)
|
|
|
|
|
|
|
|
diff --git a/include/configs/ti_armv7_common.h b/include/configs/ti_armv7_common.h
|
|
|
|
index 2bd1164..8762930 100644
|
|
|
|
--- a/include/configs/ti_armv7_common.h
|
|
|
|
+++ b/include/configs/ti_armv7_common.h
|
|
|
|
@@ -256,6 +256,11 @@
|
2014-09-08 21:29:09 +02:00
|
|
|
#define CONFIG_SPL_LIBDISK_SUPPORT
|
|
|
|
#define CONFIG_SPL_MMC_SUPPORT
|
|
|
|
#define CONFIG_SPL_FAT_SUPPORT
|
|
|
|
+#define CONFIG_SPL_EXT_SUPPORT
|
2015-06-23 11:56:52 +02:00
|
|
|
+#endif
|
|
|
|
+
|
|
|
|
+#ifdef CONFIG_SPL_BUILD
|
|
|
|
+#define CONFIG_SYS_THUMB_BUILD /* Thumbs mode to save space in SPL */
|
2014-09-08 21:29:09 +02:00
|
|
|
#endif
|
|
|
|
|
|
|
|
/* General parts of the framework, required. */
|
2015-06-23 11:56:52 +02:00
|
|
|
--
|
|
|
|
1.8.4.5
|
|
|
|
|