https://github.com/torvalds/linux
Revision 7707535ab95e2231b6d7f2bfb4f27558e83c4dc2 authored by Yang Shi on 12 February 2016, 00:12:55 UTC, committed by Linus Torvalds on 12 February 2016, 02:35:48 UTC
When enabling UBSAN_SANITIZE_ALL, the kernel image size gets increased
significantly (~3x).  So, it sounds better to have some note in Kconfig.

And, fixed a typo.

Signed-off-by: Yang Shi <yang.shi@linaro.org>
Acked-by: Andrey Ryabinin <aryabinin@virtuozzo.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
1 parent c05235d
Raw File
Tip revision: 7707535ab95e2231b6d7f2bfb4f27558e83c4dc2 authored by Yang Shi on 12 February 2016, 00:12:55 UTC
ubsan: cosmetic fix to Kconfig text
Tip revision: 7707535
system_certificates.S
#include <linux/export.h>
#include <linux/init.h>

	__INITRODATA

	.align 8
	.globl VMLINUX_SYMBOL(system_certificate_list)
VMLINUX_SYMBOL(system_certificate_list):
__cert_list_start:
#ifdef CONFIG_MODULE_SIG
	.incbin "certs/signing_key.x509"
#endif
	.incbin "certs/x509_certificate_list"
__cert_list_end:

	.align 8
	.globl VMLINUX_SYMBOL(system_certificate_list_size)
VMLINUX_SYMBOL(system_certificate_list_size):
#ifdef CONFIG_64BIT
	.quad __cert_list_end - __cert_list_start
#else
	.long __cert_list_end - __cert_list_start
#endif
back to top