blob: fd72a99d12ae42696b3244a9ab6db926fc99d6c4 [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 Sakkinen8e029fc2012-05-08 21:22:40 +030016GLOBAL(real_mode_relocs)
Jarkko Sakkinenb3266bd2012-05-08 21:22:25 +030017 .incbin "arch/x86/realmode/rm/realmode.relocs"
18END(real_mode_relocs)