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>
14 lines
219 B
C
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
|