1/*
2 * Wrapper script for the realmode binary as a transport object
3 * before copying to low memory.
4 */
5#include <asm/page_types.h>
6
7	.section ".x86_trampoline","a"
8	.balign PAGE_SIZE
9	.globl	acpi_wakeup_code
10acpi_wakeup_code:
11	.incbin	"arch/x86/kernel/acpi/realmode/wakeup.bin"
12	.size	acpi_wakeup_code, .-acpi_wakeup_code
13