]> git.proxmox.com Git - efi-boot-shim.git/blame - globals.c
Update upstream source from tag 'upstream/15.5'
[efi-boot-shim.git] / globals.c
CommitLineData
8529e0f7
SM
1// SPDX-License-Identifier: BSD-2-Clause-Patent
2/*
3 * globals.c - global shim state
4 * Copyright Peter Jones <pjones@redhat.com>
5 */
6
7#include "shim.h"
8
9UINT32 vendor_authorized_size = 0;
10UINT8 *vendor_authorized = NULL;
11
12UINT32 vendor_deauthorized_size = 0;
13UINT8 *vendor_deauthorized = NULL;
14
15#if defined(ENABLE_SHIM_CERT)
16UINT32 build_cert_size;
17UINT8 *build_cert;
18#endif /* defined(ENABLE_SHIM_CERT) */
19
20/*
21 * indicator of how an image has been verified
22 */
23verification_method_t verification_method;
24int loader_is_participating;
25
26UINT8 user_insecure_mode;
27UINT8 ignore_db;
28UINT8 trust_mok_list;
29
30UINT32 verbose = 0;
31
32// vim:fenc=utf-8:tw=75:noet