at for-next 480 B view raw
1// SPDX-License-Identifier: GPL-2.0 2 3#include <linux/module.h> 4/* 5 * Include build-salt.h after module.h in order to 6 * inherit the definitions. 7 */ 8#define INCLUDE_VERMAGIC 9#include <linux/build-salt.h> 10#include <linux/elfnote-lto.h> 11#include <linux/vermagic.h> 12 13#ifdef CONFIG_UNWINDER_ORC 14#include <asm/orc_header.h> 15ORC_HEADER; 16#endif 17 18BUILD_SALT; 19BUILD_LTO_INFO; 20 21MODULE_INFO(vermagic, VERMAGIC_STRING); 22 23#ifdef CONFIG_MITIGATION_RETPOLINE 24MODULE_INFO(retpoline, "Y"); 25#endif