2012-05-08 20:22:25 +02:00
|
|
|
/*
|
|
|
|
* Wrapper script for the realmode binary as a transport object
|
|
|
|
* before copying to low memory.
|
|
|
|
*/
|
|
|
|
#include <linux/linkage.h>
|
|
|
|
#include <asm/page_types.h>
|
|
|
|
|
|
|
|
.section ".init.data","aw"
|
|
|
|
|
|
|
|
.balign PAGE_SIZE
|
|
|
|
|
2012-05-08 20:22:40 +02:00
|
|
|
GLOBAL(real_mode_blob)
|
2012-05-08 20:22:25 +02:00
|
|
|
.incbin "arch/x86/realmode/rm/realmode.bin"
|
|
|
|
END(real_mode_blob)
|
|
|
|
|
2012-05-08 20:22:41 +02:00
|
|
|
GLOBAL(real_mode_blob_end);
|
|
|
|
|
2012-05-08 20:22:40 +02:00
|
|
|
GLOBAL(real_mode_relocs)
|
2012-05-08 20:22:25 +02:00
|
|
|
.incbin "arch/x86/realmode/rm/realmode.relocs"
|
|
|
|
END(real_mode_relocs)
|