commit d1edce71135cc6d98c0a4b5729774542b676e769 Author: sophgo-forum-service <forum_service@sophgo.com> Date: Fri Mar 15 16:07:33 2024 +0800 [fix] recommend using ssh method to clone repo. [fix] fix sensor driver repo branch name.
19 lines
350 B
ArmAsm
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)
|