Jarkko Sakkinen | b3266bd | 2012-05-08 21:22:25 +0300 | [diff] [blame] | 1 | /* |
| 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 Sakkinen | 8e029fc | 2012-05-08 21:22:40 +0300 | [diff] [blame] | 12 | GLOBAL(real_mode_blob) |
Jarkko Sakkinen | b3266bd | 2012-05-08 21:22:25 +0300 | [diff] [blame] | 13 | .incbin "arch/x86/realmode/rm/realmode.bin" |
| 14 | END(real_mode_blob) |
| 15 | |
Jarkko Sakkinen | b429dbf | 2012-05-08 21:22:41 +0300 | [diff] [blame] | 16 | GLOBAL(real_mode_blob_end); |
| 17 | |
Jarkko Sakkinen | 8e029fc | 2012-05-08 21:22:40 +0300 | [diff] [blame] | 18 | GLOBAL(real_mode_relocs) |
Jarkko Sakkinen | b3266bd | 2012-05-08 21:22:25 +0300 | [diff] [blame] | 19 | .incbin "arch/x86/realmode/rm/realmode.relocs" |
| 20 | END(real_mode_relocs) |