All of lore.kernel.org
 help / color / mirror / Atom feed
* [U-Boot] [PATCH 0/2] Re-enabled DuoVero platform
@ 2016-05-05 18:58 Ash Charles
  2016-05-05 18:58 ` [U-Boot] [PATCH 1/2] omap4: load files for legacy boot Ash Charles
  2016-05-05 18:58 ` [U-Boot] [PATCH 2/2] omap4: duovero: Disable EFI booting Ash Charles
  0 siblings, 2 replies; 5+ messages in thread
From: Ash Charles @ 2016-05-05 18:58 UTC (permalink / raw)
  To: u-boot

The Gumstix DuoVero board isn't compiling currently.  These patches get
it compiling and booting again.

Ash Charles (2):
  omap4: load files for legacy boot
  omap4: duovero: Disable EFI booting

 include/configs/duovero.h         | 1 +
 include/configs/ti_omap4_common.h | 5 ++++-
 2 files changed, 5 insertions(+), 1 deletion(-)

-- 
2.1.4

^ permalink raw reply	[flat|nested] 5+ messages in thread

* [U-Boot] [PATCH 1/2] omap4: load files for legacy boot
  2016-05-05 18:58 [U-Boot] [PATCH 0/2] Re-enabled DuoVero platform Ash Charles
@ 2016-05-05 18:58 ` Ash Charles
  2016-05-06 17:47   ` Tom Rini
  2016-05-05 18:58 ` [U-Boot] [PATCH 2/2] omap4: duovero: Disable EFI booting Ash Charles
  1 sibling, 1 reply; 5+ messages in thread
From: Ash Charles @ 2016-05-05 18:58 UTC (permalink / raw)
  To: u-boot

Be sure to load the zImage and fdtfile prior to actually booting in
case we are doing a legacy boot.

Signed-off-by: Ash Charles <ashcharles@gmail.com>
---
 include/configs/ti_omap4_common.h | 5 ++++-
 1 file changed, 4 insertions(+), 1 deletion(-)

diff --git a/include/configs/ti_omap4_common.h b/include/configs/ti_omap4_common.h
index 586d848..5fad3c1 100644
--- a/include/configs/ti_omap4_common.h
+++ b/include/configs/ti_omap4_common.h
@@ -122,7 +122,10 @@
 	"loaduimage=load mmc ${mmcdev} ${loadaddr} uImage\0" \
 	"mmcboot=echo Booting from mmc${mmcdev} ...; " \
 		"run args_mmc; " \
-		"bootz ${loadaddr} - ${fdtaddr}\0" \
+		"if run loadimage; then " \
+			"run loadfdt; " \
+			"bootz ${loadaddr} - ${fdtaddr}; " \
+		"fi;\0" \
 	"uimageboot=echo Booting from mmc${mmcdev} ...; " \
 		"run args_mmc; " \
 		"bootm ${loadaddr}\0" \
-- 
2.1.4

^ permalink raw reply related	[flat|nested] 5+ messages in thread

* [U-Boot] [PATCH 2/2] omap4: duovero: Disable EFI booting
  2016-05-05 18:58 [U-Boot] [PATCH 0/2] Re-enabled DuoVero platform Ash Charles
  2016-05-05 18:58 ` [U-Boot] [PATCH 1/2] omap4: load files for legacy boot Ash Charles
@ 2016-05-05 18:58 ` Ash Charles
  2016-05-06 17:47   ` Tom Rini
  1 sibling, 1 reply; 5+ messages in thread
From: Ash Charles @ 2016-05-05 18:58 UTC (permalink / raw)
  To: u-boot

The DuoVero board fails to compile with EFI enabled as the generated
binaries are too large.  As this platform doesn't currently need EFI,
disable this feature.

Signed-off-by: Ash Charles <ashcharles@gmail.com>
---
 include/configs/duovero.h | 1 +
 1 file changed, 1 insertion(+)

diff --git a/include/configs/duovero.h b/include/configs/duovero.h
index bb3ba55..48f768e 100644
--- a/include/configs/duovero.h
+++ b/include/configs/duovero.h
@@ -22,6 +22,7 @@
 #include <configs/ti_omap4_common.h>
 
 #undef CONFIG_SPL_OS_BOOT
+#undef CONFIG_EFI_PARTITION
 
 #undef CONFIG_SYS_EMIF_PRECALCULATED_TIMING_REGS
 #define CONFIG_SYS_AUTOMATIC_SDRAM_DETECTION
-- 
2.1.4

^ permalink raw reply related	[flat|nested] 5+ messages in thread

* [U-Boot] [PATCH 1/2] omap4: load files for legacy boot
  2016-05-05 18:58 ` [U-Boot] [PATCH 1/2] omap4: load files for legacy boot Ash Charles
@ 2016-05-06 17:47   ` Tom Rini
  0 siblings, 0 replies; 5+ messages in thread
From: Tom Rini @ 2016-05-06 17:47 UTC (permalink / raw)
  To: u-boot

On Thu, May 05, 2016 at 11:58:06AM -0700, Ash Charles wrote:

> Be sure to load the zImage and fdtfile prior to actually booting in
> case we are doing a legacy boot.
> 
> Signed-off-by: Ash Charles <ashcharles@gmail.com>

Applied to u-boot/master, thanks!

-- 
Tom
-------------- next part --------------
A non-text attachment was scrubbed...
Name: signature.asc
Type: application/pgp-signature
Size: 819 bytes
Desc: Digital signature
URL: <http://lists.denx.de/pipermail/u-boot/attachments/20160506/7583cdba/attachment.sig>

^ permalink raw reply	[flat|nested] 5+ messages in thread

* [U-Boot] [PATCH 2/2] omap4: duovero: Disable EFI booting
  2016-05-05 18:58 ` [U-Boot] [PATCH 2/2] omap4: duovero: Disable EFI booting Ash Charles
@ 2016-05-06 17:47   ` Tom Rini
  0 siblings, 0 replies; 5+ messages in thread
From: Tom Rini @ 2016-05-06 17:47 UTC (permalink / raw)
  To: u-boot

On Thu, May 05, 2016 at 11:58:07AM -0700, Ash Charles wrote:

> The DuoVero board fails to compile with EFI enabled as the generated
> binaries are too large.  As this platform doesn't currently need EFI,
> disable this feature.
> 
> Signed-off-by: Ash Charles <ashcharles@gmail.com>

Applied to u-boot/master, thanks!

-- 
Tom
-------------- next part --------------
A non-text attachment was scrubbed...
Name: signature.asc
Type: application/pgp-signature
Size: 819 bytes
Desc: Digital signature
URL: <http://lists.denx.de/pipermail/u-boot/attachments/20160506/f15e9e7b/attachment.sig>

^ permalink raw reply	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2016-05-06 17:47 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2016-05-05 18:58 [U-Boot] [PATCH 0/2] Re-enabled DuoVero platform Ash Charles
2016-05-05 18:58 ` [U-Boot] [PATCH 1/2] omap4: load files for legacy boot Ash Charles
2016-05-06 17:47   ` Tom Rini
2016-05-05 18:58 ` [U-Boot] [PATCH 2/2] omap4: duovero: Disable EFI booting Ash Charles
2016-05-06 17:47   ` Tom Rini

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.