diff options
| author | Tom Rini <[email protected]> | 2019-02-13 07:12:29 -0500 |
|---|---|---|
| committer | Tom Rini <[email protected]> | 2019-02-13 07:12:29 -0500 |
| commit | 63f7e3fca391a50a499fed828fe16325fdee45f3 (patch) | |
| tree | 6214d5fe9a24d21b9a729a1bda3fdd22e442d298 /common | |
| parent | b1b1bab7f92b838a252ab977f56d9c3584c14fb7 (diff) | |
| parent | 823c233b7ab95169ea4428b2821b72b8887b47b0 (diff) | |
Merge tag 'signed-efi-next' of git://github.com/agraf/u-boot
Patch queue for efi - 2019-02-13
Goodness this time around:
- HII protocol, finally allows us to run the UEFI Shell!
(experimantal, disabled by default)
- efi selftest now available on Cortex-M
- NVMe support for distro boot
- Lots of code cleanup
Diffstat (limited to 'common')
| -rw-r--r-- | common/bootm.c | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/common/bootm.c b/common/bootm.c index 7c7505f0920..3adbceaa38e 100644 --- a/common/bootm.c +++ b/common/bootm.c @@ -912,6 +912,16 @@ static const void *boot_get_kernel(cmd_tbl_t *cmdtp, int flag, int argc, return buf; } + +/** + * switch_to_non_secure_mode() - switch to non-secure mode + * + * This routine is overridden by architectures requiring this feature. + */ +void __weak switch_to_non_secure_mode(void) +{ +} + #else /* USE_HOSTCC */ void memmove_wd(void *to, void *from, size_t len, ulong chunksz) |
