mirror of
https://git.proxmox.com/git/efi-boot-shim
synced 2025-06-14 07:22:43 +00:00

The license statements in our source files were getting to be a giant mess, and mostly they all just say the same thing. I've switched most of it to SPDX labels, but left copyright statements in place (where they were not obviously incorrect copy-paste jobs that I did...). If there's some change here you don't think is valid, let me know and we can fix it up together. Signed-off-by: Peter Jones <pjones@redhat.com>
16 lines
308 B
C
16 lines
308 B
C
// SPDX-License-Identifier: BSD-2-Clause-Patent
|
|
|
|
#ifndef SHIM_ERRORS_H
|
|
#define SHIM_ERRORS_H
|
|
|
|
#include <efierr.h>
|
|
|
|
#ifndef EFI_INCOMPATIBLE_VERSION
|
|
#define EFI_INCOMPATIBLE_VERSION EFIERR(25)
|
|
#endif
|
|
#ifndef EFI_SECURITY_VIOLATION
|
|
#define EFI_SECURITY_VIOLATION EFIERR(26)
|
|
#endif
|
|
|
|
#endif /* SHIM_ERRORS_H */
|