[PATCH] bootm: export bootm_set_verify_mode
Ahmad Fatoum
a.fatoum at pengutronix.de
Wed Jul 26 12:28:24 PDT 2023
We already have bootm_get_verify_mode() exported, so export
bootm_set_verify_mode() for symmetry. The same can already be achieved
by changing $global.bootm.verify, but direct access makes it easier to
set a default value that can be overridden by built-in environment.
Signed-off-by: Ahmad Fatoum <a.fatoum at pengutronix.de>
---
common/bootm.c | 5 +++++
include/bootm.h | 1 +
2 files changed, 6 insertions(+)
diff --git a/common/bootm.c b/common/bootm.c
index 791d6b8fbbf1..c46b00a86f64 100644
--- a/common/bootm.c
+++ b/common/bootm.c
@@ -70,6 +70,11 @@ enum bootm_verify bootm_get_verify_mode(void)
return bootm_verify_mode;
}
+void bootm_set_verify_mode(enum bootm_verify mode)
+{
+ bootm_verify_mode = mode;
+}
+
static const char * const bootm_verify_names[] = {
#ifndef CONFIG_BOOTM_FORCE_SIGNED_IMAGES
[BOOTM_VERIFY_NONE] = "none",
diff --git a/include/bootm.h b/include/bootm.h
index 655c5152d97e..ee2b574521db 100644
--- a/include/bootm.h
+++ b/include/bootm.h
@@ -145,6 +145,7 @@ int bootm_load_devicetree(struct image_data *data, void *fdt,
int bootm_get_os_size(struct image_data *data);
enum bootm_verify bootm_get_verify_mode(void);
+void bootm_set_verify_mode(enum bootm_verify mode);
#define UIMAGE_SOME_ADDRESS (UIMAGE_INVALID_ADDRESS - 1)
--
2.39.2
More information about the barebox
mailing list