diff options
author | Steffen Jaeckel | 2021-07-08 15:57:40 +0200 |
---|---|---|
committer | Tom Rini | 2021-07-23 13:36:20 -0400 |
commit | 25c8b9f298e46ea6048b5308f7ee207c6461c36a (patch) | |
tree | 1c8f414dc7ae2d0e914a706e3dd8aaebb945c946 /common/console.c | |
parent | 33198740aca2d68e9760cfd6ebb5a55894431966 (diff) |
test: add first autoboot unit tests
This adds tests for the crypt-based and plain SHA256-based password hashing
algorithms in the autoboot flow.
Signed-off-by: Steffen Jaeckel <jaeckel-floss@eyet-services.de>
Reviewed-by: Simon Glass <sjg@chromium.org>
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 */ |