diff options
Diffstat (limited to 'arch/x86/um/vdso/vdso.S')
-rw-r--r-- | arch/x86/um/vdso/vdso.S | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/arch/x86/um/vdso/vdso.S b/arch/x86/um/vdso/vdso.S new file mode 100644 index 00000000000..1cb468adacb --- /dev/null +++ b/arch/x86/um/vdso/vdso.S @@ -0,0 +1,10 @@ +#include <linux/init.h> + +__INITDATA + + .globl vdso_start, vdso_end +vdso_start: + .incbin "arch/x86/um/vdso/vdso.so" +vdso_end: + +__FINIT |