x86, realmode: realmode.bin infrastructure
Create realmode.bin and realmode.relocs files. Piggy pack them into relocatable object that will be included into .init.data section of the main kernel image. The first file includes binary image of the real-mode code. The latter file includes all relocations. The layout of the binary image is specified in realmode.lds.S. The makefile generates pa_ prefixed symbols for each exported global. These are used in 32-bit code and in realmode header to define symbols that need to be relocated. Signed-off-by: Jarkko Sakkinen <jarkko.sakkinen@intel.com> Link: http://lkml.kernel.org/r/1336501366-28617-3-git-send-email-jarkko.sakkinen@intel.com Originally-by: H. Peter Anvin <hpa@linux.intel.com> Signed-off-by: H. Peter Anvin <hpa@linux.intel.com>
This commit is contained in:

committed by
H. Peter Anvin

parent
433de739bb
commit
b3266bd6ff
16
arch/x86/realmode/rm/header.S
Normal file
16
arch/x86/realmode/rm/header.S
Normal file
@@ -0,0 +1,16 @@
|
||||
/*
|
||||
* Real-mode blob header; this should match realmode.h and be
|
||||
* readonly; for mutable data instead add pointers into the .data
|
||||
* or .bss sections as appropriate.
|
||||
*/
|
||||
|
||||
#include <linux/linkage.h>
|
||||
#include <asm/page_types.h>
|
||||
|
||||
.section ".header", "a"
|
||||
|
||||
ENTRY(real_mode_header)
|
||||
.long pa_text_start
|
||||
.long pa_ro_end
|
||||
.long pa_end
|
||||
END(real_mode_header)
|
Reference in New Issue
Block a user