https://github.com/torvalds/linux
Raw File
Tip revision: ec6f34e5b552fb0a52e6aae1a5afbbb1605cc6cc authored by Linus Torvalds on 18 January 2015, 06:02:20 UTC
Linux 3.19-rc5
Tip revision: ec6f34e
stack.S
/*
 * purgatory:  stack
 *
 * Copyright (C) 2014 Red Hat Inc.
 *
 * This source code is licensed under the GNU General Public License,
 * Version 2.  See the file COPYING for more details.
 */

	/* A stack for the loaded kernel.
	 * Seperate and in the data section so it can be prepopulated.
	 */
	.data
	.balign 4096
	.globl stack, stack_end

stack:
	.skip 4096
stack_end:
back to top