blob: 204c6ece0e97640d6373206a12155356655a585c [file] [log] [blame]
Jarkko Sakkinenb3266bd2012-05-08 21:22:25 +03001/*
2 * Wrapper script for the realmode binary as a transport object
3 * before copying to low memory.
4 */
5#include <linux/linkage.h>
6#include <asm/page_types.h>
7
8 .section ".init.data","aw"
9
10 .balign PAGE_SIZE
11
Jarkko Sakkinen8e029fc2012-05-08 21:22:40 +030012GLOBAL(real_mode_blob)
Jarkko Sakkinenb3266bd2012-05-08 21:22:25 +030013 .incbin "arch/x86/realmode/rm/realmode.bin"
14END(real_mode_blob)
15
Jarkko Sakkinenb429dbf2012-05-08 21:22:41 +030016GLOBAL(real_mode_blob_end);
17
Jarkko Sakkinen8e029fc2012-05-08 21:22:40 +030018GLOBAL(real_mode_relocs)
Jarkko Sakkinenb3266bd2012-05-08 21:22:25 +030019 .incbin "arch/x86/realmode/rm/realmode.relocs"
20END(real_mode_relocs)