mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-12-04 09:46:51 +07:00
b56e5a17b6
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>
13 lines
253 B
ArmAsm
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)
|