mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-18 02:38:56 +00:00
18 lines
388 B
ArmAsm
18 lines
388 B
ArmAsm
|
/* SPDX-License-Identifier: GPL-2.0+ */
|
||
|
/*
|
||
|
* .esl cert for capsule authentication
|
||
|
*
|
||
|
* Copyright (c) 2021, Ilias Apalodimas <ilias.apalodimas@linaro.org>
|
||
|
*/
|
||
|
|
||
|
#include <config.h>
|
||
|
|
||
|
.section .rodata.capsule_key.init,"a"
|
||
|
.balign 16
|
||
|
.global __efi_capsule_sig_begin
|
||
|
__efi_capsule_sig_begin:
|
||
|
.incbin CONFIG_EFI_CAPSULE_KEY_PATH
|
||
|
__efi_capsule_sig_end:
|
||
|
.global __efi_capsule_sig_end
|
||
|
.balign 16
|