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 | |||||
12 | ENTRY(real_mode_blob) | ||||
13 | .incbin "arch/x86/realmode/rm/realmode.bin" | ||||
14 | END(real_mode_blob) | ||||
15 | |||||
16 | ENTRY(real_mode_relocs) | ||||
17 | .incbin "arch/x86/realmode/rm/realmode.relocs" | ||||
18 | END(real_mode_relocs) |