mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-05 20:54:31 +00:00
29f75a5ce5
Add initial support for Freescale MX28EVK board. Tested boot via SD card and by loading a kernel via TFTP through the FEC interface. Signed-off-by: Fabio Estevam <fabio.estevam@freescale.com> Acked-by: Marek Vasut <marek.vasut@gmail.com> Acked-by: Stefano Babic <sbabic@denx.de>
14 lines
254 B
Text
14 lines
254 B
Text
sources {
|
|
u_boot_spl="spl/u-boot-spl.bin";
|
|
u_boot="u-boot.bin";
|
|
}
|
|
|
|
section (0) {
|
|
load u_boot_spl > 0x0000;
|
|
load ivt (entry = 0x0014) > 0x8000;
|
|
hab call 0x8000;
|
|
|
|
load u_boot > 0x40000100;
|
|
load ivt (entry = 0x40000100) > 0x8000;
|
|
hab call 0x8000;
|
|
}
|