remarkable-linux/kernel/system_certificates.S
David Howells b56e5a17b6 KEYS: Separate the kernel signature checking keyring from module signing
Separate the kernel signature checking keyring from module signing so that it
can be used by code other than the module-signing code.

Signed-off-by: David Howells <dhowells@redhat.com>
2013-09-25 17:17:01 +01:00

13 lines
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)