stack.S 375 B

12345678910111213141516171819
  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. /* A stack for the loaded kernel.
  10. * Seperate and in the data section so it can be prepopulated.
  11. */
  12. .data
  13. .balign 4096
  14. .globl stack, stack_end
  15. stack:
  16. .skip 4096
  17. stack_end: