Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
torvalds
GitHub Repository: torvalds/linux
Path: blob/master/arch/x86/realmode/rmpiggy.S
26451 views
1
/* SPDX-License-Identifier: GPL-2.0 */
2
/*
3
* Wrapper script for the realmode binary as a transport object
4
* before copying to low memory.
5
*/
6
#include <linux/linkage.h>
7
#include <asm/page_types.h>
8
9
.section ".init.data","aw"
10
11
.balign PAGE_SIZE
12
13
SYM_DATA_START(real_mode_blob)
14
.incbin "arch/x86/realmode/rm/realmode.bin"
15
SYM_DATA_END_LABEL(real_mode_blob, SYM_L_GLOBAL, real_mode_blob_end)
16
17
SYM_DATA_START(real_mode_relocs)
18
.incbin "arch/x86/realmode/rm/realmode.relocs"
19
SYM_DATA_END(real_mode_relocs)
20
21