system_certificates.S (60c8eb38c1b75e83194a07ec7acfe85852fcc0d8) system_certificates.S (781a5739489949fd0f32432a9da17f7ddbccf1cc)
1/* SPDX-License-Identifier: GPL-2.0 */
2#include <linux/export.h>
3#include <linux/init.h>
4
5 __INITRODATA
6
7 .align 8
8 .globl system_certificate_list
9system_certificate_list:
10__cert_list_start:
11__module_cert_start:
1/* SPDX-License-Identifier: GPL-2.0 */
2#include <linux/export.h>
3#include <linux/init.h>
4
5 __INITRODATA
6
7 .align 8
8 .globl system_certificate_list
9system_certificate_list:
10__cert_list_start:
11__module_cert_start:
12#if defined(CONFIG_MODULE_SIG) || defined(CONFIG_IMA_APPRAISE_MODSIG)
12#if defined(CONFIG_MODULE_SIG) || (defined(CONFIG_IMA_APPRAISE_MODSIG) \
13 && defined(CONFIG_MODULES))
13 .incbin "certs/signing_key.x509"
14#endif
15__module_cert_end:
16 .incbin "certs/x509_certificate_list"
17__cert_list_end:
18
19#ifdef CONFIG_SYSTEM_EXTRA_CERTIFICATE
20 .globl system_extra_cert

--- 28 unchanged lines hidden ---
14 .incbin "certs/signing_key.x509"
15#endif
16__module_cert_end:
17 .incbin "certs/x509_certificate_list"
18__cert_list_end:
19
20#ifdef CONFIG_SYSTEM_EXTRA_CERTIFICATE
21 .globl system_extra_cert

--- 28 unchanged lines hidden ---