diff options
author | Dinh Nguyen <Dinh.Nguyen@freescale.com> | 2010-03-19 13:15:13 -0500 |
---|---|---|
committer | Dinh Nguyen <Dinh.Nguyen@freescale.com> | 2010-03-19 13:17:20 -0500 |
commit | e84eaf4df6db1f4038580ec88d3e4a49624363eb (patch) | |
tree | be3676d32cc9bed79292db6991c79666f1c9e6b3 | |
parent | c37f6d2604aabe8ba4c226e8f2bb4b5d95af22ec (diff) | |
download | u-boot-imx-e84eaf4df6db1f4038580ec88d3e4a49624363eb.zip u-boot-imx-e84eaf4df6db1f4038580ec88d3e4a49624363eb.tar.gz u-boot-imx-e84eaf4df6db1f4038580ec88d3e4a49624363eb.tar.bz2 |
ENGR00121779 Support a single kernel image on MX5x parts
This change is required by kernel change ENGR00121762
(enables a single kernel image on MX5x parts using run-time phys_offset).
Load address and Entry points are set for MX53 parts(0x7xxxxxxx).
So the bootloader must add the offset 0x20000000 for MX51 parts.
Signed-off-by: Lily Zhang <r58066@freescale.com>
-rw-r--r-- | common/cmd_bootm.c | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/common/cmd_bootm.c b/common/cmd_bootm.c index 86c8122..f43b472 100644 --- a/common/cmd_bootm.c +++ b/common/cmd_bootm.c @@ -713,6 +713,13 @@ static image_header_t *image_get_kernel (ulong img_addr, int verify) return NULL; } +#if defined(CONFIG_MX51_BBG) || defined(CONFIG_MX51_3DS) + if (image_get_load(hdr) < 0x90000000) + image_set_load(hdr, image_get_load(hdr)+0x20000000); + if (image_get_ep(hdr) < 0x90000000) + image_set_ep(hdr, image_get_ep(hdr)+0x20000000); +#endif + show_boot_progress (3); image_print_contents (hdr); |