]> git.proxmox.com Git - mirror_ubuntu-bionic-kernel.git/blame - arch/x86/realmode/rmpiggy.S
License cleanup: add SPDX GPL-2.0 license identifier to files with no license
[mirror_ubuntu-bionic-kernel.git] / arch / x86 / realmode / rmpiggy.S
CommitLineData
b2441318 1/* SPDX-License-Identifier: GPL-2.0 */
b3266bd6
JS
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
8e029fcd 13GLOBAL(real_mode_blob)
b3266bd6
JS
14 .incbin "arch/x86/realmode/rm/realmode.bin"
15END(real_mode_blob)
16
b429dbf6
JS
17GLOBAL(real_mode_blob_end);
18
8e029fcd 19GLOBAL(real_mode_relocs)
b3266bd6
JS
20 .incbin "arch/x86/realmode/rm/realmode.relocs"
21END(real_mode_relocs)