mirror of
https://github.com/zephyrproject-rtos/zephyr
synced 2025-09-10 01:21:57 +00:00
Removed Console dependencies from shell uart backend. Generated define: CONFIG_UART_SHELL_ON_DEV_NAME for each board. Fixes #10191 Signed-off-by: Jakub Rzeszutko <jakub.rzeszutko@nordicsemi.no>
31 lines
421 B
Plaintext
31 lines
421 B
Plaintext
/dts-v1/;
|
|
|
|
#include <nios2-qemu.dtsi>
|
|
|
|
/ {
|
|
model = "qemu_nios2";
|
|
compatible = "qemu,nios2";
|
|
|
|
aliases {
|
|
uart-0 = &jtag_uart;
|
|
uart-1 = &ns16550_uart;
|
|
};
|
|
|
|
chosen {
|
|
zephyr,sram = &sram0;
|
|
zephyr,flash = &flash0;
|
|
zephyr,console = &ns16550_uart;
|
|
zephyr,shell-uart = &ns16550_uart;
|
|
};
|
|
};
|
|
|
|
&jtag_uart {
|
|
status = "ok";
|
|
current-speed = <115200>;
|
|
};
|
|
|
|
&ns16550_uart {
|
|
status = "ok";
|
|
current-speed = <115200>;
|
|
};
|