mirror of
https://git.proxmox.com/git/efi-boot-shim
synced 2025-06-04 02:08:53 +00:00
12 lines
257 B
C
12 lines
257 B
C
// SPDX-License-Identifier: BSD-2-Clause-Patent
|
|
|
|
#include <efi.h>
|
|
|
|
#include "version.h"
|
|
|
|
CHAR8 shim_version[] __attribute__((section (".data.ident"))) =
|
|
"UEFI SHIM\n"
|
|
"$Version: @@VERSION@@ $\n"
|
|
"$BuildMachine: @@UNAME@@ $\n"
|
|
"$Commit: @@COMMIT@@ $\n";
|