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