0001
0002 #ifndef _ASM_VERMAGIC_H
0003 #define _ASM_VERMAGIC_H
0004
0005 #ifdef CONFIG_MPROFILE_KERNEL
0006 #define MODULE_ARCH_VERMAGIC_FTRACE "mprofile-kernel "
0007 #else
0008 #define MODULE_ARCH_VERMAGIC_FTRACE ""
0009 #endif
0010
0011 #ifdef CONFIG_RELOCATABLE
0012 #define MODULE_ARCH_VERMAGIC_RELOCATABLE "relocatable "
0013 #else
0014 #define MODULE_ARCH_VERMAGIC_RELOCATABLE ""
0015 #endif
0016
0017 #define MODULE_ARCH_VERMAGIC \
0018 MODULE_ARCH_VERMAGIC_FTRACE MODULE_ARCH_VERMAGIC_RELOCATABLE
0019
0020 #endif