vdso32_wrapper.S 236 B

12345678910111213
  1. #include <linux/init.h>
  2. #include <asm/page.h>
  3. .section ".data.page_aligned"
  4. .globl vdso32_start, vdso32_end
  5. .balign PAGE_SIZE
  6. vdso32_start:
  7. .incbin "arch/powerpc/kernel/vdso32/vdso32.so"
  8. .balign PAGE_SIZE
  9. vdso32_end:
  10. .previous