forked from starfive-tech/linux
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Omit use of script/bin2c hack. Directly include into assembler file instead. Signed-off-by: Philipp Rudo <[email protected]> Signed-off-by: Martin Schwidefsky <[email protected]>
- Loading branch information
Philipp Rudo
authored and
Martin Schwidefsky
committed
Apr 29, 2019
1 parent
61f3f8f
commit 4c0f032
Showing
2 changed files
with
17 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
/* SPDX-License-Identifier: GPL-2.0 */ | ||
|
||
.section .rodata, "a" | ||
|
||
.align 8 | ||
kexec_purgatory: | ||
.globl kexec_purgatory | ||
.incbin "arch/s390/purgatory/purgatory.ro" | ||
.Lkexec_purgatroy_end: | ||
|
||
.align 8 | ||
kexec_purgatory_size: | ||
.globl kexec_purgatory_size | ||
.quad .Lkexec_purgatroy_end - kexec_purgatory |