diff options
author | Otavio Salvador <otavio@ossystems.com.br> | 2013-01-11 03:19:12 +0000 |
---|---|---|
committer | Stefano Babic <sbabic@denx.de> | 2013-01-21 12:05:21 +0100 |
commit | e6d93c26c792c42792c1c24c4626731e29ab1df2 (patch) | |
tree | a160e63d26d722bb11c755fe723fb6ab17d403db /arch/arm/cpu | |
parent | 1ddf386e23288397cd5f2f80d7e10b07734edea5 (diff) | |
download | u-boot-imx-e6d93c26c792c42792c1c24c4626731e29ab1df2.zip u-boot-imx-e6d93c26c792c42792c1c24c4626731e29ab1df2.tar.gz u-boot-imx-e6d93c26c792c42792c1c24c4626731e29ab1df2.tar.bz2 |
mx23: config: Enable building of u-boot.sb binary
For i.MX23 we need to pass imx23 as elftosb param.
Signed-off-by: Otavio Salvador <otavio@ossystems.com.br>
Cc: Fabio Estevam <fabio.estevam@freescale.com>
Cc: Marek Vasut <marex@denx.de>
Cc: Stefano Babic <sbabic@denx.de>
Diffstat (limited to 'arch/arm/cpu')
-rw-r--r-- | arch/arm/cpu/arm926ejs/mxs/u-boot-imx23.bd | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/arch/arm/cpu/arm926ejs/mxs/u-boot-imx23.bd b/arch/arm/cpu/arm926ejs/mxs/u-boot-imx23.bd new file mode 100644 index 0000000..3a51879 --- /dev/null +++ b/arch/arm/cpu/arm926ejs/mxs/u-boot-imx23.bd @@ -0,0 +1,18 @@ +options { + driveTag = 0x00; + flags = 0x01; +} + +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; + call 0x8000; + + load u_boot > 0x40000100; + call 0x40000100; +} |