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
|
|
|
|
|
|
|
#define GLOBAL(name) \
|
2013-03-15 04:34:17 +00:00
|
|
|
.globl VMLINUX_SYMBOL(name); \
|
|
|
|
VMLINUX_SYMBOL(name):
|
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-08-30 15:07:30 +00:00
|
|
|
GLOBAL(system_certificate_list)
|
2013-08-30 15:07:13 +00:00
|
|
|
.incbin "kernel/x509_certificate_list"
|
2013-08-30 15:07:30 +00:00
|
|
|
GLOBAL(system_certificate_list_end)
|