Files
u-boot/include/shim.h
Simon Glass 27f066d157 efi: Add a command to help with shim
Shim is a program which normally comes before U-Boot in the boot
process. But when the app runs first, it can sometimes chain Shim since
that is what is contained within the bootaa64.efi file, for example.

Add a simple command for dealing with shim. For now it only supports
enabling verbosity.

Co-developed-by: Claude <noreply@anthropic.com>
Signed-off-by: Simon Glass <sjg@chromium.org>
2025-08-28 05:21:49 -06:00

14 lines
219 B
C

/* SPDX-License-Identifier: GPL-2.0+ */
/*
* Shim features and settings
*
* Copyright 2025 Simon Glass <sjg@chromium.org>
*/
#ifndef __SHIM_H
#define __SHIM_H
#define SHIM_VERBOSE_VAR_NAME L"SHIM_VERBOSE"
#endif