diff options
author | H. Nikolaus Schaller <hns@goldelico.com> | 2012-04-20 14:10:36 +0200 |
---|---|---|
committer | H. Nikolaus Schaller <hns@goldelico.com> | 2012-04-20 14:10:36 +0200 |
commit | 819e36b8ceadb1d67db1ffe91b99c5282bfc6159 (patch) | |
tree | caa2bc25e54f0d41abb61920f29d3bf5eee3d864 /README-GTA04 | |
parent | a9a9e3f6aed040a12daf64157615f5e9fed974bb (diff) | |
download | bootable_bootloader_goldelico_gta04_x-loader-819e36b8ceadb1d67db1ffe91b99c5282bfc6159.zip bootable_bootloader_goldelico_gta04_x-loader-819e36b8ceadb1d67db1ffe91b99c5282bfc6159.tar.gz bootable_bootloader_goldelico_gta04_x-loader-819e36b8ceadb1d67db1ffe91b99c5282bfc6159.tar.bz2 |
tree moved to a better location
Diffstat (limited to 'README-GTA04')
-rw-r--r-- | README-GTA04 | 46 |
1 files changed, 46 insertions, 0 deletions
diff --git a/README-GTA04 b/README-GTA04 new file mode 100644 index 0000000..db2431c --- /dev/null +++ b/README-GTA04 @@ -0,0 +1,46 @@ +This X-loader has been modified for the http://www.GTA04.org board: + +* added Micron MCP detection +* added board revision detection +* added GTA04 notice to greeting +* added memory write check when loading u-boot.bin + from SD card to detect SDRAM failures +* added more Macros to compile either x-loader, MLO and + serial loader from the same sources + +For compiling the different variants, modify these files + +1. X-Loader +a) include/configs/omap3530gta04.h +//#define CONFIG_MMC 1 +#define CONFIG_NAND 1 + +b) board/omap3530gta04/config.mk +TEXT_BASE = 0x40200800 + +2. MLO +a) include/configs/omap3530gta04.h +#define CONFIG_MMC 1 +#define CONFIG_NAND 1 + +b) board/omap3530gta04/config.mk +TEXT_BASE = 0x40200800 + +3. Serial Loader +a) include/configs/omap3530gta04.h +//#define CONFIG_MMC 1 +//#define CONFIG_NAND 1 + +b) board/omap3530gta04/config.mk +TEXT_BASE = 0x40200800 + + +Compile: +make omap3530gta04_config + + +Result file: +X-Loader: x-load.bin.ift +MLO: rename x-load.bin.ift to MLO +Serial Loader: send x-load.bin through pserial tool + |