blob: c078dba40cef89a2d95ab4dc65e903606392b650 [file] [log] [blame]
Greg Kroah-Hartmanb2441312017-11-01 15:07:57 +01001/* SPDX-License-Identifier: GPL-2.0 */
Jarkko Sakkinenb3266bd2012-05-08 21:22:25 +03002/*
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
Jarkko Sakkinen8e029fc2012-05-08 21:22:40 +030013GLOBAL(real_mode_blob)
Jarkko Sakkinenb3266bd2012-05-08 21:22:25 +030014 .incbin "arch/x86/realmode/rm/realmode.bin"
15END(real_mode_blob)
16
Jarkko Sakkinenb429dbf2012-05-08 21:22:41 +030017GLOBAL(real_mode_blob_end);
18
Jarkko Sakkinen8e029fc2012-05-08 21:22:40 +030019GLOBAL(real_mode_relocs)
Jarkko Sakkinenb3266bd2012-05-08 21:22:25 +030020 .incbin "arch/x86/realmode/rm/realmode.relocs"
21END(real_mode_relocs)