rmpiggy.S 506 B

12345678910111213141516171819
  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. SYM_DATA_START(real_mode_blob)
  11. .incbin "arch/x86/realmode/rm/realmode.bin"
  12. SYM_DATA_END_LABEL(real_mode_blob, SYM_L_GLOBAL, real_mode_blob_end)
  13. SYM_DATA_START(real_mode_relocs)
  14. .incbin "arch/x86/realmode/rm/realmode.relocs"
  15. SYM_DATA_END(real_mode_relocs)