mirror of
https://github.com/zephyrproject-rtos/zephyr
synced 2025-09-11 11:02:41 +00:00
Aliases are not suppose to use '_', so replace with '-'. Signed-off-by: Kumar Gala <kumar.gala@linaro.org>
30 lines
384 B
Plaintext
30 lines
384 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;
|
|
};
|
|
};
|
|
|
|
&jtag_uart {
|
|
status = "ok";
|
|
current-speed = <115200>;
|
|
};
|
|
|
|
&ns16550_uart {
|
|
status = "ok";
|
|
current-speed = <115200>;
|
|
};
|