Orange Pi5 kernel

Deprecated Linux kernel 5.10.110 for OrangePi 5/5B/5+ boards

3 Commits   0 Branches   0 Tags
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300  1) /* SPDX-License-Identifier: GPL-2.0 */
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300  2) #include <linux/export.h>
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300  3) #include <linux/init.h>
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300  4) 
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300  5) 	__INITRODATA
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300  6) 
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300  7) 	.align 8
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300  8) 	.globl system_certificate_list
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300  9) system_certificate_list:
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 10) __cert_list_start:
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 11) #ifdef CONFIG_MODULE_SIG
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 12) 	.incbin "certs/signing_key.x509"
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 13) #endif
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 14) 	.incbin "certs/x509_certificate_list"
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 15) __cert_list_end:
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 16) 
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 17) #ifdef CONFIG_SYSTEM_EXTRA_CERTIFICATE
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 18) 	.globl system_extra_cert
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 19) 	.size system_extra_cert, CONFIG_SYSTEM_EXTRA_CERTIFICATE_SIZE
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 20) system_extra_cert:
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 21) 	.fill CONFIG_SYSTEM_EXTRA_CERTIFICATE_SIZE, 1, 0
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 22) 
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 23) 	.align 4
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 24) 	.globl system_extra_cert_used
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 25) system_extra_cert_used:
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 26) 	.int 0
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 27) 
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 28) #endif /* CONFIG_SYSTEM_EXTRA_CERTIFICATE */
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 29) 
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 30) 	.align 8
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 31) 	.globl system_certificate_list_size
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 32) system_certificate_list_size:
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 33) #ifdef CONFIG_64BIT
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 34) 	.quad __cert_list_end - __cert_list_start
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 35) #else
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 36) 	.long __cert_list_end - __cert_list_start
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 37) #endif