rmpiggy.S 461 B

123456789101112131415161718192021
  1. /* SPDX-License-Identifier: GPL-2.0 */
  2. /*
  3. * Wrapper script for the realmode binary as a transport object
  4. * before copying to low memory.
  5. */
  6. #include <linux/linkage.h>
  7. #include <asm/page_types.h>
  8. .section ".init.data","aw"
  9. .balign PAGE_SIZE
  10. GLOBAL(real_mode_blob)
  11. .incbin "arch/x86/realmode/rm/realmode.bin"
  12. END(real_mode_blob)
  13. GLOBAL(real_mode_blob_end);
  14. GLOBAL(real_mode_relocs)
  15. .incbin "arch/x86/realmode/rm/realmode.relocs"
  16. END(real_mode_relocs)