diff options
author | Tom Rini <trini@konsulko.com> | 2021-07-23 14:50:43 -0400 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2021-07-23 14:50:43 -0400 |
commit | edecc15eb9593b94dcd6a5f4f5ea5f134125b6a0 (patch) | |
tree | 1c8f414dc7ae2d0e914a706e3dd8aaebb945c946 /common/console.c | |
parent | f534d93cbf34f1d1762b04eb5680e84bef5e1fe1 (diff) | |
parent | 25c8b9f298e46ea6048b5308f7ee207c6461c36a (diff) |
Merge branch '2021-07-23-reboot-mode-and-cryptfs-passwd-support'
- A new driver uclass is created to handle the reboot mode control.
- Add support for libcrypt-style passwords for autoboot
Diffstat (limited to 'common/console.c')
-rw-r--r-- | common/console.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/common/console.c b/common/console.c index 73edb287992..0013d183aeb 100644 --- a/common/console.c +++ b/common/console.c @@ -773,6 +773,11 @@ int console_record_avail(void) return membuff_avail((struct membuff *)&gd->console_out); } +int console_in_puts(const char *str) +{ + return membuff_put((struct membuff *)&gd->console_in, str, strlen(str)); +} + #endif /* test if ctrl-c was pressed */ |