[PATCH] bootm: export bootm_set_verify_mode
Sascha Hauer
sha at pengutronix.de
Thu Jul 27 22:53:36 PDT 2023
On Wed, Jul 26, 2023 at 09:28:24PM +0200, Ahmad Fatoum wrote:
> 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(+)
Applied, thanks
Sascha
>
> 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
>
>
>
--
Pengutronix e.K. | |
Steuerwalder Str. 21 | http://www.pengutronix.de/ |
31137 Hildesheim, Germany | Phone: +49-5121-206917-0 |
Amtsgericht Hildesheim, HRA 2686 | Fax: +49-5121-206917-5555 |
More information about the barebox
mailing list