]>
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: |
f0e6d220 | 10 | .incbin "kernel/x509_certificate_list" |
62226983 HB |
11 | __cert_list_end: |
12 | ||
13 | .align 8 | |
14 | .globl VMLINUX_SYMBOL(system_certificate_list_size) | |
15 | VMLINUX_SYMBOL(system_certificate_list_size): | |
16 | #ifdef CONFIG_64BIT | |
17 | .quad __cert_list_end - __cert_list_start | |
18 | #else | |
19 | .long __cert_list_end - __cert_list_start | |
20 | #endif |