13 строки
253 B
ArmAsm
13 строки
253 B
ArmAsm
|
#include <linux/export.h>
|
||
|
#include <linux/init.h>
|
||
|
|
||
|
#define GLOBAL(name) \
|
||
|
.globl VMLINUX_SYMBOL(name); \
|
||
|
VMLINUX_SYMBOL(name):
|
||
|
|
||
|
__INITRODATA
|
||
|
|
||
|
GLOBAL(system_certificate_list)
|
||
|
.incbin "kernel/x509_certificate_list"
|
||
|
GLOBAL(system_certificate_list_end)
|