Back to home page

OSCL-LXR

 
 

    


0001 /* SPDX-License-Identifier: GPL-2.0 */
0002 /*
0003  * Wrapper script for the realmode binary as a transport object
0004  * before copying to low memory.
0005  */
0006 #include <linux/linkage.h>
0007 #include <asm/page_types.h>
0008 
0009     .section ".init.data","aw"
0010 
0011     .balign PAGE_SIZE
0012 
0013 SYM_DATA_START(real_mode_blob)
0014     .incbin "arch/x86/realmode/rm/realmode.bin"
0015 SYM_DATA_END_LABEL(real_mode_blob, SYM_L_GLOBAL, real_mode_blob_end)
0016 
0017 SYM_DATA_START(real_mode_relocs)
0018     .incbin "arch/x86/realmode/rm/realmode.relocs"
0019 SYM_DATA_END(real_mode_relocs)