]>
Commit | Line | Data |
---|---|---|
b92021b0 | 1 | #include <linux/export.h> |
b56e5a17 | 2 | #include <linux/init.h> |
919aa45e | 3 | |
b56e5a17 | 4 | __INITRODATA |
919aa45e | 5 | |
62226983 | 6 | .align 8 |
6ef4d2ea CG |
7 | .globl VMLINUX_SYMBOL(system_certificate_list) |
8 | VMLINUX_SYMBOL(system_certificate_list): | |
62226983 | 9 | __cert_list_start: |
770f2b98 | 10 | #ifdef CONFIG_MODULE_SIG |
cfc411e7 | 11 | .incbin "certs/signing_key.x509" |
770f2b98 | 12 | #endif |
cfc411e7 | 13 | .incbin "certs/x509_certificate_list" |
62226983 HB |
14 | __cert_list_end: |
15 | ||
16 | .align 8 | |
17 | .globl VMLINUX_SYMBOL(system_certificate_list_size) | |
18 | VMLINUX_SYMBOL(system_certificate_list_size): | |
19 | #ifdef CONFIG_64BIT | |
20 | .quad __cert_list_end - __cert_list_start | |
21 | #else | |
22 | .long __cert_list_end - __cert_list_start | |
23 | #endif |