linker: Remove deprecated Kconfig options related to linker scripts

Remove Kconfig, linker script, and related bits associated with
CUSTOM_RODATA_LD, CUSTOM_RWDATA_LD, CUSTOM_SECTIONS_LD,
SOC_NOINIT_LD, SOC_RODATA_LD, and SOC_RWDATA_LD options that have been
deprecated since Zephyr 2.2.

Signed-off-by: Kumar Gala <kumar.gala@linaro.org>
This commit is contained in:
Kumar Gala 2020-06-08 10:32:24 -05:00 committed by Carles Cufí
commit 9ca541a504
13 changed files with 0 additions and 234 deletions

View file

@ -35,43 +35,6 @@ config SOC_COMPATIBLE_NRF52832
# SOC_*_LD: SoC specific Linker script additions
#
if ARC || ARM || X86 || NIOS2 || RISCV
config SOC_NOINIT_LD
bool
help
Note: This is deprecated, use Cmake function zephyr_linker_sources() instead.
Include an SoC specific linker script fragment named soc-noinit.ld
for inserting additional data and linker directives into
the noinit section.
This only has effect if the SoC uses the common linker script
under include/arch/.
config SOC_RODATA_LD
bool
help
Note: This is deprecated, use Cmake function zephyr_linker_sources() instead.
Include an SoC specific linker script fragment named soc-rodata.ld
for inserting additional data and linker directives into
the rodata section.
This only has effect if the SoC uses the common linker script
under include/arch/.
config SOC_RWDATA_LD
bool
help
Note: This is deprecated, use Cmake function zephyr_linker_sources() instead.
Include an SoC specific linker script fragment named soc-rwdata.ld
for inserting additional data and linker directives into
the data section.
This only has effect if the SoC uses the common linker script
under include/arch/.
endif # ARC || ARM || X86 || NIOS2 || RISCV
config SOC_DEPRECATED_RELEASE
string
help