:orphan: .. title:: PLATFORM_SPECIFIC_INIT .. option:: CONFIG_PLATFORM_SPECIFIC_INIT *Enable platform (SOC) specific startup hook* Type: ``bool`` Help ==== The platform specific initialization code (z_platform_init) is executed at the beginning of the startup code (__start). Direct dependencies =================== !\ :option:`ARM64 ` && \ :option:`ARM ` *(Includes any dependencies from ifs and menus.)* Defaults ======== No defaults. Implicitly defaults to ``n``. Symbols that select this symbol =============================== - \ :option:`SOC_XILINX_ZYNQMP_RPU ` - \ :option:`SOC_FAMILY_XMC ` - \ :option:`SOC_FAMILY_NRF ` - \ :option:`SOC_FAMILY_NUMICRO ` - \ :option:`SOC_LPC54114_M4 ` Kconfig definition ================== .. highlight:: kconfig At ``arch/arm/core/aarch32/Kconfig:130`` Included via ``Kconfig:8`` → ``Kconfig.zephyr:29`` → ``arch/Kconfig:12`` → ``arch/arm/Kconfig:42`` Menu path: (Top) → ARM Options .. parsed-literal:: config PLATFORM_SPECIFIC_INIT bool "Enable platform (SOC) specific startup hook" depends on !\ :option:`ARM64 ` && \ :option:`ARM ` help The platform specific initialization code (z_platform_init) is executed at the beginning of the startup code (__start). *(The 'depends on' condition includes propagated dependencies from ifs and menus.)*