From a54535551d7f37054c73c79b6f0417e7e244db89 Mon Sep 17 00:00:00 2001 From: Otavio Salvador Date: Sat, 18 Aug 2012 07:25:25 +0000 Subject: MX28: config: Allow different target generation in elftosb call The elftosb call needs to use a target param specific for i.MX28. This patch allow for later addition of i.MX233. Signed-off-by: Otavio Salvador Acked-by: Marek Vasut --- arch/arm/cpu/arm926ejs/mxs/u-boot-imx28.bd | 14 ++++++++++++++ arch/arm/cpu/arm926ejs/mxs/u-boot.bd | 14 -------------- 2 files changed, 14 insertions(+), 14 deletions(-) create mode 100644 arch/arm/cpu/arm926ejs/mxs/u-boot-imx28.bd delete mode 100644 arch/arm/cpu/arm926ejs/mxs/u-boot.bd (limited to 'arch/arm/cpu/arm926ejs/mxs') diff --git a/arch/arm/cpu/arm926ejs/mxs/u-boot-imx28.bd b/arch/arm/cpu/arm926ejs/mxs/u-boot-imx28.bd new file mode 100644 index 0000000..c60615a --- /dev/null +++ b/arch/arm/cpu/arm926ejs/mxs/u-boot-imx28.bd @@ -0,0 +1,14 @@ +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; +} diff --git a/arch/arm/cpu/arm926ejs/mxs/u-boot.bd b/arch/arm/cpu/arm926ejs/mxs/u-boot.bd deleted file mode 100644 index c60615a..0000000 --- a/arch/arm/cpu/arm926ejs/mxs/u-boot.bd +++ /dev/null @@ -1,14 +0,0 @@ -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; -} -- cgit v1.1