1# SPDX-License-Identifier: Apache-2.0 2# The contents of this file is based on include/zephyr/linker/common-noinit.ld 3# Please keep in sync 4 5zephyr_linker_section(NAME .noinit GROUP NOINIT_REGION TYPE NOLOAD NOINIT) 6 7if(CONFIG_USERSPACE) 8 zephyr_linker_section_configure( 9 SECTION .noinit 10 INPUT ".user_stacks*" 11 SYMBOLS z_user_stacks_start z_user_stacks_end) 12 13endif() 14# TODO: #include <snippets-noinit.ld> 15include(${COMMON_ZEPHYR_LINKER_DIR}/kobject-priv-stacks.cmake) 16