[U-Boot] [PATCH 0/2] Re-enabled DuoVero platform

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(-)

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" \

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!

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

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!
participants (2)
-
Ash Charles
-
Tom Rini