You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
#include <linux/export.h>
|
|
|
|
#define GLOBAL(name) \
|
|
.globl VMLINUX_SYMBOL(name); \
|
|
VMLINUX_SYMBOL(name):
|
|
|
|
.section ".init.data","aw"
|
|
|
|
GLOBAL(modsign_certificate_list)
|
|
.incbin "signing_key.x509"
|
|
.incbin "extra_certificates"
|
|
GLOBAL(modsign_certificate_list_end)
|
|
|