mirror of
https://git.proxmox.com/git/efi-boot-shim
synced 2025-08-03 22:45:48 +00:00

The thing about subtraction is that the minuend needs to be before the subtrahend in the text. Signed-off-by: Peter Jones <pjones@redhat.com>
33 lines
560 B
ArmAsm
33 lines
560 B
ArmAsm
#if defined(VENDOR_CERT_FILE)
|
|
.globl vendor_cert_size
|
|
.data
|
|
.align 1
|
|
.type vendor_cert_size, @object
|
|
.size vendor_cert_size, 4
|
|
vendor_cert_size:
|
|
.long .L0 - vendor_cert
|
|
.globl vendor_cert
|
|
.data
|
|
.align 1
|
|
.type vendor_cert, @object
|
|
.size vendor_cert, .L0-vendor_cert
|
|
vendor_cert:
|
|
.incbin VENDOR_CERT_FILE
|
|
.L0:
|
|
#else
|
|
.globl vendor_cert
|
|
.bss
|
|
.type vendor_cert, @object
|
|
.size vendor_cert, 1
|
|
vendor_cert:
|
|
.zero 1
|
|
|
|
.globl vendor_cert_size
|
|
.data
|
|
.align 4
|
|
.type vendor_cert_size, @object
|
|
.size vendor_cert_size, 4
|
|
vendor_cert_size:
|
|
.long 1
|
|
#endif
|