mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-11-16 16:54:20 +08:00
19 lines
391 B
ArmAsm
19 lines
391 B
ArmAsm
|
/*
|
||
|
* 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
|
||
|
|
||
|
ENTRY(real_mode_blob)
|
||
|
.incbin "arch/x86/realmode/rm/realmode.bin"
|
||
|
END(real_mode_blob)
|
||
|
|
||
|
ENTRY(real_mode_relocs)
|
||
|
.incbin "arch/x86/realmode/rm/realmode.relocs"
|
||
|
END(real_mode_relocs)
|