common-noinit.ld 684 B

12345678910111213141516171819202122232425262728
  1. /*
  2. * Copyright (c) 2020 Intel Corporation.
  3. *
  4. * SPDX-License-Identifier: Apache-2.0
  5. */
  6. SECTION_PROLOGUE(_NOINIT_SECTION_NAME,(NOLOAD),)
  7. {
  8. /*
  9. * This section is used for non-initialized objects that
  10. * will not be cleared during the boot process.
  11. */
  12. *(.noinit)
  13. *(".noinit.*")
  14. #ifdef CONFIG_USERSPACE
  15. z_user_stacks_start = .;
  16. *(.user_stacks*)
  17. z_user_stacks_end = .;
  18. #endif /* CONFIG_USERSPACE */
  19. /* Located in generated directory. This file is populated by the
  20. * zephyr_linker_sources() Cmake function.
  21. */
  22. #include <snippets-noinit.ld>
  23. } GROUP_NOLOAD_LINK_IN(RAMABLE_REGION, ROMABLE_REGION)
  24. #include "kobject-priv-stacks.ld"