xref: /linux/certs/revocation_certificates.S (revision d1f04410)
1*d1f04410SEric Snowberg/* SPDX-License-Identifier: GPL-2.0 */
2*d1f04410SEric Snowberg#include <linux/export.h>
3*d1f04410SEric Snowberg#include <linux/init.h>
4*d1f04410SEric Snowberg
5*d1f04410SEric Snowberg	__INITRODATA
6*d1f04410SEric Snowberg
7*d1f04410SEric Snowberg	.align 8
8*d1f04410SEric Snowberg	.globl revocation_certificate_list
9*d1f04410SEric Snowbergrevocation_certificate_list:
10*d1f04410SEric Snowberg__revocation_list_start:
11*d1f04410SEric Snowberg	.incbin "certs/x509_revocation_list"
12*d1f04410SEric Snowberg__revocation_list_end:
13*d1f04410SEric Snowberg
14*d1f04410SEric Snowberg	.align 8
15*d1f04410SEric Snowberg	.globl revocation_certificate_list_size
16*d1f04410SEric Snowbergrevocation_certificate_list_size:
17*d1f04410SEric Snowberg#ifdef CONFIG_64BIT
18*d1f04410SEric Snowberg	.quad __revocation_list_end - __revocation_list_start
19*d1f04410SEric Snowberg#else
20*d1f04410SEric Snowberg	.long __revocation_list_end - __revocation_list_start
21*d1f04410SEric Snowberg#endif
22