diff options
author | Tom Rini <trini@konsulko.com> | 2019-10-25 17:33:28 -0400 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2019-10-25 17:33:28 -0400 |
commit | 15147dc6a96697880cf355ed9df127bd8c896f2c (patch) | |
tree | cb4f364950e04426e5631ce78a0eaa0dbc4d250b /arch/arm/lib/bootm.c | |
parent | 271103ac0b8ff627007f83d379927b60bcccb702 (diff) | |
parent | d0e134b909f75db080c9364bfb84d6bf1d724844 (diff) |
Merge branch '2019-10-24-ti-imports'
- Enable DFU on dra7xx boards
- Further Keystone 3 platform improvements
Diffstat (limited to 'arch/arm/lib/bootm.c')
-rw-r--r-- | arch/arm/lib/bootm.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/arch/arm/lib/bootm.c b/arch/arm/lib/bootm.c index 1638f1e81d..488358a331 100644 --- a/arch/arm/lib/bootm.c +++ b/arch/arm/lib/bootm.c @@ -224,6 +224,8 @@ static void do_nonsec_virt_switch(void) } #endif +__weak void board_prep_linux(bootm_headers_t *images) { } + /* Subcommand: PREP */ static void boot_prep_linux(bootm_headers_t *images) { @@ -270,6 +272,8 @@ static void boot_prep_linux(bootm_headers_t *images) printf("FDT and ATAGS support not compiled in - hanging\n"); hang(); } + + board_prep_linux(images); } __weak bool armv7_boot_nonsec_default(void) |