1ef507ca50a5e002558436f7a8cbb4e0cd27bb43
[releases.git] / stack.S
1 /* SPDX-License-Identifier: GPL-2.0-only */
2 /*
3  * purgatory:  stack
4  *
5  * Copyright (C) 2014 Red Hat Inc.
6  */
7
8 #include <linux/linkage.h>
9
10         /* A stack for the loaded kernel.
11          * Separate and in the data section so it can be prepopulated.
12          */
13         .data
14         .balign 4096
15
16 SYM_DATA_START(stack)
17         .skip 4096
18 SYM_DATA_END_LABEL(stack, SYM_L_GLOBAL, stack_end)