summaryrefslogtreecommitdiff
path: root/common
diff options
context:
space:
mode:
authorSteffen Jaeckel <jaeckel-floss@eyet-services.de>2021-07-08 16:57:40 +0300
committerTom Rini <trini@konsulko.com>2021-07-23 20:36:20 +0300
commit25c8b9f298e46ea6048b5308f7ee207c6461c36a (patch)
tree1c8f414dc7ae2d0e914a706e3dd8aaebb945c946 /common
parent33198740aca2d68e9760cfd6ebb5a55894431966 (diff)
downloadu-boot-25c8b9f298e46ea6048b5308f7ee207c6461c36a.tar.xz
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')
-rw-r--r--common/Kconfig.boot2
-rw-r--r--common/console.c5
2 files changed, 6 insertions, 1 deletions
diff --git a/common/Kconfig.boot b/common/Kconfig.boot
index 49e28b2ef2..642dd9bcfb 100644
--- a/common/Kconfig.boot
+++ b/common/Kconfig.boot
@@ -907,7 +907,7 @@ config AUTOBOOT_STOP_STR_CRYPT
and saved in the environment variable "bootstopkeycrypt".
config AUTOBOOT_STOP_STR_SHA256
- string "Stop autobooting via SHA256 encrypted password"
+ string "Stop autobooting via SHA256 hashed password"
depends on AUTOBOOT_STOP_STR_ENABLE
help
This option adds the feature to only stop the autobooting,
diff --git a/common/console.c b/common/console.c
index 73edb28799..0013d183ae 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 */