diff options
author | Tom Rini <trini@konsulko.com> | 2024-02-13 17:31:11 -0500 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2024-02-13 17:32:17 -0500 |
commit | 0b66c54a97320956b837f61216debfb50c0ffec6 (patch) | |
tree | 4a641d6853dd8dd7fd7586b6be8d67c418717204 /common/main.c | |
parent | 73b5b47dd5b546d0b9106bcca54c72815380e6d3 (diff) | |
parent | ea7d3eec1e6e6541db68bf48a1314410e06cd9de (diff) |
Merge branch '2024-02-13-assorted-updates'
- Add the button command patch, update MAINTAINERS entry for a platform,
fix a problem with the hash command, fix a problem on K3 platforms and
revert a change on verdin-am62.
Diffstat (limited to 'common/main.c')
-rw-r--r-- | common/main.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/common/main.c b/common/main.c index 6dba6cba14..82d3aafa53 100644 --- a/common/main.c +++ b/common/main.c @@ -8,6 +8,7 @@ #include <common.h> #include <autoboot.h> +#include <button.h> #include <bootstage.h> #include <bootstd.h> #include <cli.h> @@ -62,6 +63,8 @@ void main_loop(void) efi_launch_capsules(); } + process_button_cmds(); + s = bootdelay_process(); if (cli_process_fdt(&s)) cli_secure_boot_cmd(s); |