2013-03-15 15:04:17 +10:30
|
|
|
#include <linux/export.h>
|
2013-08-30 16:07:30 +01:00
|
|
|
#include <linux/init.h>
|
2012-12-11 11:37:13 +10:30
|
|
|
|
2013-08-30 16:07:30 +01:00
|
|
|
__INITRODATA
|
2012-12-11 11:37:13 +10:30
|
|
|
|
2013-12-05 14:48:22 +01:00
|
|
|
.align 8
|
2013-10-30 09:11:28 +08:00
|
|
|
.globl VMLINUX_SYMBOL(system_certificate_list)
|
|
|
|
VMLINUX_SYMBOL(system_certificate_list):
|
2013-12-05 14:48:22 +01:00
|
|
|
__cert_list_start:
|
2015-07-20 21:16:34 +01:00
|
|
|
#ifdef CONFIG_MODULE_SIG
|
2015-08-14 15:20:41 +01:00
|
|
|
.incbin "certs/signing_key.x509"
|
2015-07-20 21:16:34 +01:00
|
|
|
#endif
|
2015-08-14 15:20:41 +01:00
|
|
|
.incbin "certs/x509_certificate_list"
|
2013-12-05 14:48:22 +01:00
|
|
|
__cert_list_end:
|
|
|
|
|
|
|
|
.align 8
|
|
|
|
.globl VMLINUX_SYMBOL(system_certificate_list_size)
|
|
|
|
VMLINUX_SYMBOL(system_certificate_list_size):
|
|
|
|
#ifdef CONFIG_64BIT
|
|
|
|
.quad __cert_list_end - __cert_list_start
|
|
|
|
#else
|
|
|
|
.long __cert_list_end - __cert_list_start
|
|
|
|
#endif
|