xref: /linux/arch/x86/realmode/rmpiggy.S (revision e2be04c7f9958dde770eeb8b30e829ca969b37bb)
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
13GLOBAL(real_mode_blob)
14	.incbin	"arch/x86/realmode/rm/realmode.bin"
15END(real_mode_blob)
16
17GLOBAL(real_mode_blob_end);
18
19GLOBAL(real_mode_relocs)
20	.incbin	"arch/x86/realmode/rm/realmode.relocs"
21END(real_mode_relocs)
22