diff options
author | Marek Vasut <marek.vasut@gmail.com> | 2018-06-13 06:13:32 +0200 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2018-06-19 07:31:45 -0400 |
commit | 7f13b374fd8fa59f694a1127a79f9bfc3891ef0d (patch) | |
tree | 7052297f947750634f6c86eb139969be7234e7d6 /cmd/booti.c | |
parent | fe996ec0663703846d8ce11446c07b6ae0bf9077 (diff) | |
download | u-boot-7f13b374fd8fa59f694a1127a79f9bfc3891ef0d.tar.gz u-boot-7f13b374fd8fa59f694a1127a79f9bfc3891ef0d.tar.bz2 u-boot-7f13b374fd8fa59f694a1127a79f9bfc3891ef0d.zip |
ARM: image: Add option for ignoring ep bit 3
Add option to the booti_setup() which indicates to it that the caller
requires the image to be relocated to the beginning of the RAM and
that the information whether the image can be located anywhere in RAM
at 2 MiB aligned boundary or not is to be ignored. This is useful ie.
in case the Image is wrapped in another envelope, ie. fitImage and not
relocating it but moving it would corrupt the envelope.
Signed-off-by: Marek Vasut <marek.vasut+renesas@gmail.com>
Cc: Bin Chen <bin.chen@linaro.org>
Cc: Masahiro Yamada <yamada.masahiro@socionext.com>
Cc: Tom Rini <trini@konsulko.com>
Reviewed-By: Bin Chen <bin.chen@linaro.org>
Diffstat (limited to 'cmd/booti.c')
-rw-r--r-- | cmd/booti.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cmd/booti.c b/cmd/booti.c index 45fbb99b68..04353b68ec 100644 --- a/cmd/booti.c +++ b/cmd/booti.c @@ -37,7 +37,7 @@ static int booti_start(cmd_tbl_t *cmdtp, int flag, int argc, debug("* kernel: cmdline image address = 0x%08lx\n", ld); } - ret = booti_setup(ld, &relocated_addr, &image_size); + ret = booti_setup(ld, &relocated_addr, &image_size, false); if (ret != 0) return 1; |