f82e1b22eac43b3e8a13b5e25d741f00803a208a
[deliverable/linux.git] / certs / system_certificates.S
1 #include <linux/export.h>
2 #include <linux/init.h>
3
4 __INITRODATA
5
6 .align 8
7 .globl VMLINUX_SYMBOL(system_certificate_list)
8 VMLINUX_SYMBOL(system_certificate_list):
9 __cert_list_start:
10 #ifdef CONFIG_MODULE_SIG
11 .incbin "certs/signing_key.x509"
12 #endif
13 .incbin "certs/x509_certificate_list"
14 __cert_list_end:
15
16 #ifdef CONFIG_SYSTEM_EXTRA_CERTIFICATE
17 .globl VMLINUX_SYMBOL(system_extra_cert)
18 .size system_extra_cert, CONFIG_SYSTEM_EXTRA_CERTIFICATE_SIZE
19 VMLINUX_SYMBOL(system_extra_cert):
20 .fill CONFIG_SYSTEM_EXTRA_CERTIFICATE_SIZE, 1, 0
21
22 .globl VMLINUX_SYMBOL(system_extra_cert_used)
23 VMLINUX_SYMBOL(system_extra_cert_used):
24 .int 0
25
26 #endif /* CONFIG_SYSTEM_EXTRA_CERTIFICATE */
27
28 .align 8
29 .globl VMLINUX_SYMBOL(system_certificate_list_size)
30 VMLINUX_SYMBOL(system_certificate_list_size):
31 #ifdef CONFIG_64BIT
32 .quad __cert_list_end - __cert_list_start
33 #else
34 .long __cert_list_end - __cert_list_start
35 #endif
This page took 0.075645 seconds and 5 git commands to generate.