Rusty Russell | b92021b | 2013-03-15 15:04:17 +1030 | [diff] [blame] | 1 | #include <linux/export.h> |
Takashi Iwai | 919aa45 | 2012-12-11 11:37:13 +1030 | [diff] [blame] | 2 | |
3 | #define GLOBAL(name) \ | ||||
Rusty Russell | b92021b | 2013-03-15 15:04:17 +1030 | [diff] [blame] | 4 | .globl VMLINUX_SYMBOL(name); \ |
5 | VMLINUX_SYMBOL(name): | ||||
Takashi Iwai | 919aa45 | 2012-12-11 11:37:13 +1030 | [diff] [blame] | 6 | |
7 | .section ".init.data","aw" | ||||
8 | |||||
9 | GLOBAL(modsign_certificate_list) | ||||
10 | .incbin "signing_key.x509" | ||||
11 | .incbin "extra_certificates" | ||||
12 | GLOBAL(modsign_certificate_list_end) |