diff options
| author | Tom Rini <[email protected]> | 2020-08-03 08:01:08 -0400 |
|---|---|---|
| committer | Tom Rini <[email protected]> | 2020-08-03 08:01:08 -0400 |
| commit | 4dc3ba568fd22ef6a5a061ba6675fcfd4c3ece70 (patch) | |
| tree | 927060fe33d69ee04c4cace328297ac92f151bc5 /drivers | |
| parent | a2d051e7b6a8f87add1067d936bb0c805a47b0df (diff) | |
| parent | 5c2227e4956f3287165ef5aac55ee5e96a61a518 (diff) | |
Merge tag 'efi-2020-10-rc2' of https://gitlab.denx.de/u-boot/custodians/u-boot-efi
Pull request for UEFI sub-system for efi-2020-10-rc2
This series comprises error corrections for the UEFI subsystem:
* make the memory size reserved for the U-Boot stack customizable
and reduce it for the MAIX board
* correct build dependencies for UEFI unit test
* enable read-only UEFI variable are enabled with the TEE backend
* add 10 ms wait to sysreset to fix a problem with unit testing
Diffstat (limited to 'drivers')
| -rw-r--r-- | drivers/sysreset/sysreset-uclass.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/sysreset/sysreset-uclass.c b/drivers/sysreset/sysreset-uclass.c index 995240f0cbc..3f5414ed1f8 100644 --- a/drivers/sysreset/sysreset-uclass.c +++ b/drivers/sysreset/sysreset-uclass.c @@ -117,6 +117,7 @@ void reset_cpu(ulong addr) int do_reset(struct cmd_tbl *cmdtp, int flag, int argc, char *const argv[]) { printf("resetting ...\n"); + mdelay(100); sysreset_walk_halt(SYSRESET_COLD); |
