mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-12-01 08:36:43 +07:00
11 lines
305 B
ArmAsm
11 lines
305 B
ArmAsm
|
/*
|
||
|
* Wrapper script for the realmode binary as a transport object
|
||
|
* before copying to low memory.
|
||
|
*/
|
||
|
.section ".rodata","a"
|
||
|
.globl wakeup_code_start, wakeup_code_end
|
||
|
wakeup_code_start:
|
||
|
.incbin "arch/x86/kernel/acpi/realmode/wakeup.bin"
|
||
|
wakeup_code_end:
|
||
|
.size wakeup_code_start, .-wakeup_code_start
|