mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-12-01 08:04:22 +08:00
40b0b3f8fb
Based on 2 normalized pattern(s): this source code is licensed under the gnu general public license version 2 see the file copying for more details this source code is licensed under general public license version 2 see extracted by the scancode license scanner the SPDX license identifier GPL-2.0-only has been chosen to replace the boilerplate/reference in 52 file(s). Signed-off-by: Thomas Gleixner <tglx@linutronix.de> Reviewed-by: Enrico Weigelt <info@metux.net> Reviewed-by: Allison Randal <allison@lohutok.net> Reviewed-by: Alexios Zavras <alexios.zavras@intel.com> Cc: linux-spdx@vger.kernel.org Link: https://lkml.kernel.org/r/20190602204653.449021192@linutronix.de Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
18 lines
292 B
ArmAsm
18 lines
292 B
ArmAsm
/* SPDX-License-Identifier: GPL-2.0-only */
|
|
/*
|
|
* purgatory: stack
|
|
*
|
|
* Copyright (C) 2014 Red Hat Inc.
|
|
*/
|
|
|
|
/* A stack for the loaded kernel.
|
|
* Separate and in the data section so it can be prepopulated.
|
|
*/
|
|
.data
|
|
.balign 4096
|
|
.globl stack, stack_end
|
|
|
|
stack:
|
|
.skip 4096
|
|
stack_end:
|