:orphan: .. title:: UART_CONSOLE_ON_DEV_NAME .. option:: CONFIG_UART_CONSOLE_ON_DEV_NAME *Device Name of UART Device for UART Console* Type: ``string`` Help ==== This option specifies the name of UART device to be used for UART console. Direct dependencies =================== (\ :option:`USB ` && \ :option:`BOARD_DEGU_EVK `) || \ :option:`SOC_NSIM ` || \ :option:`SOC_QEMU_ARC ` || \ :option:`UART_CONSOLE ` || \ :option:`CONSOLE_SUBSYS ` *(Includes any dependencies from ifs and menus.)* Defaults ======== - "CDC_ACM_0" - "UART_0" - "UART_0" - "" if \ :option:`HAS_DTS ` - "UART_0" Kconfig definitions =================== .. highlight:: kconfig At ``boards/arm/degu_evk/Kconfig.defconfig:31`` Included via ``Kconfig:8`` → ``Kconfig.zephyr:18`` Menu path: (Top) .. parsed-literal:: config UART_CONSOLE_ON_DEV_NAME string default "CDC_ACM_0" depends on \ :option:`USB ` && \ :option:`BOARD_DEGU_EVK ` ---- At ``soc/arc/snps_nsim/Kconfig.defconfig:9`` Included via ``Kconfig:8`` → ``Kconfig.zephyr:19`` → ``/home/runner/work/bridle/bridle/workspace/build/Kconfig/Kconfig.soc.defconfig:1`` Menu path: (Top) .. parsed-literal:: config UART_CONSOLE_ON_DEV_NAME string default "UART_0" depends on \ :option:`SOC_NSIM ` ---- At ``soc/arc/snps_qemu/Kconfig.defconfig:14`` Included via ``Kconfig:8`` → ``Kconfig.zephyr:19`` → ``/home/runner/work/bridle/bridle/workspace/build/Kconfig/Kconfig.soc.defconfig:1`` Menu path: (Top) .. parsed-literal:: config UART_CONSOLE_ON_DEV_NAME string default "UART_0" depends on \ :option:`SOC_QEMU_ARC ` ---- At ``drivers/console/Kconfig:12`` Included via ``Kconfig:8`` → ``Kconfig.zephyr:32`` → ``drivers/Kconfig:14`` Menu path: (Top) → Device Drivers .. parsed-literal:: config UART_CONSOLE_ON_DEV_NAME string "Device Name of UART Device for UART Console" default "" if \ :option:`HAS_DTS ` default "UART_0" depends on \ :option:`UART_CONSOLE ` || \ :option:`CONSOLE_SUBSYS ` help This option specifies the name of UART device to be used for UART console. *(The 'depends on' condition includes propagated dependencies from ifs and menus.)*