File tree Expand file tree Collapse file tree 3 files changed +4
-15
lines changed Expand file tree Collapse file tree 3 files changed +4
-15
lines changed Original file line number Diff line number Diff line change @@ -319,7 +319,7 @@ device.
319319 - Flash partition that the Zephyr image's text section should be linked
320320 into
321321 * - zephyr,console
322- - Sets default :kconfig: ` CONFIG_UART_CONSOLE_ON_DEV_NAME `
322+ - Sets UART device used by console driver
323323 * - zephyr,dtcm
324324 - Data Tightly Coupled Memory node on some Arm SoCs
325325 * - zephyr,entropy
Original file line number Diff line number Diff line change @@ -52,6 +52,8 @@ Removed APIs in this release
5252 in favor of chosen node ``zephyr,ot-uart ``.
5353* Removed ``CONFIG_UART_MCUMGR_ON_DEV_NAME `` Kconfig option
5454 in favor of direct use of chosen node ``zephyr,uart-mcumgr ``.
55+ * Removed ``CONFIG_UART_CONSOLE_ON_DEV_NAME `` Kconfig option
56+ in favor of direct use of chosen node ``zephyr,console ``.
5557
5658============================
5759
Original file line number Diff line number Diff line change 66
77# Setting shared by different subsystems
88
9- # Workaround for not being able to have commas in macro arguments
10- DT_CHOSEN_Z_CONSOLE := zephyr,console
11-
12- config UART_CONSOLE_ON_DEV_NAME
13- string "Device Name of UART Device for UART Console"
14- default "$(dt_chosen_label,$(DT_CHOSEN_Z_CONSOLE))" if HAS_DTS
15- default "UART_0"
16- depends on (UART_CONSOLE || CONSOLE_SUBSYS)
17- help
18- This option specifies the name of UART device to be used for
19- UART console.
20-
219menuconfig CONSOLE
2210 bool "Console drivers"
2311
@@ -49,8 +37,7 @@ config UART_CONSOLE
4937 depends on SERIAL && SERIAL_HAS_DRIVER
5038 select CONSOLE_HAS_DRIVER
5139 help
52- Enable this option to use one UART for console. Make sure
53- CONFIG_UART_CONSOLE_ON_DEV_NAME is also set correctly.
40+ Enable this option to use one UART for console.
5441
5542config UART_CONSOLE_INIT_PRIORITY
5643 int "Init priority"
You can’t perform that action at this time.
0 commit comments