2013-03-15 04:34:17 +00:00
|
|
|
#include <linux/export.h>
|
2013-08-30 15:07:30 +00:00
|
|
|
#include <linux/init.h>
|
2012-12-11 01:07:13 +00:00
|
|
|
|
2013-08-30 15:07:30 +00:00
|
|
|
__INITRODATA
|
2012-12-11 01:07:13 +00:00
|
|
|
|
2013-12-05 13:48:22 +00:00
|
|
|
.align 8
|
2013-10-30 01:11:28 +00:00
|
|
|
.globl VMLINUX_SYMBOL(system_certificate_list)
|
|
|
|
VMLINUX_SYMBOL(system_certificate_list):
|
2013-12-05 13:48:22 +00:00
|
|
|
__cert_list_start:
|
2013-08-30 15:07:13 +00:00
|
|
|
.incbin "kernel/x509_certificate_list"
|
2013-12-05 13:48:22 +00: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
|