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
16SYM_DATA_START(stack)
17 .skip 4096
18SYM_DATA_END_LABEL(stack, SYM_L_GLOBAL, stack_end)
19

source code of linux/arch/x86/purgatory/stack.S