Vivek Goyal | 8fc5b4d | 2014-08-08 14:26:02 -0700 | [diff] [blame] | 1 | /* |
| 2 | * purgatory: stack |
| 3 | * |
| 4 | * Copyright (C) 2014 Red Hat Inc. |
| 5 | * |
| 6 | * This source code is licensed under the GNU General Public License, |
| 7 | * Version 2. See the file COPYING for more details. |
| 8 | */ |
| 9 | |
| 10 | /* A stack for the loaded kernel. |
Adam Buchbinder | 6a6256f | 2016-02-23 15:34:30 -0800 | [diff] [blame^] | 11 | * Separate and in the data section so it can be prepopulated. |
Vivek Goyal | 8fc5b4d | 2014-08-08 14:26:02 -0700 | [diff] [blame] | 12 | */ |
| 13 | .data |
| 14 | .balign 4096 |
| 15 | .globl stack, stack_end |
| 16 | |
| 17 | stack: |
| 18 | .skip 4096 |
| 19 | stack_end: |