1
0
mirror of https://github.com/physwizz/a155-U-u1.git synced 2025-08-15 06:35:18 +00:00
Files
physwizz 99537be4e2 first
2024-03-11 06:53:12 +11:00

19 lines
350 B
ArmAsm

/* SPDX-License-Identifier: GPL-2.0-only */
/*
* purgatory: stack
*
* Copyright (C) 2014 Red Hat Inc.
*/
#include <linux/linkage.h>
/* A stack for the loaded kernel.
* Separate and in the data section so it can be prepopulated.
*/
.data
.balign 4096
SYM_DATA_START(stack)
.skip 4096
SYM_DATA_END_LABEL(stack, SYM_L_GLOBAL, stack_end)