mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-17 18:28:55 +00:00
d6c099c2a1
This contains just enough to bring up the serial UART. Signed-off-by: Simon Glass <sjg@chromium.org> Reviewed-by: Bin Meng <bmeng.cn@gmail.com> Tested-by: Bin Meng <bmeng.cn@gmail.com>
22 lines
258 B
Text
22 lines
258 B
Text
/*
|
|
* Copyright (c) 2015 Google, Inc
|
|
*
|
|
* SPDX-License-Identifier: GPL-2.0+
|
|
*/
|
|
|
|
/dts-v1/;
|
|
|
|
/include/ "skeleton.dtsi"
|
|
|
|
/ {
|
|
model = "EFI";
|
|
compatible = "efi,app";
|
|
|
|
chosen {
|
|
stdout-path = &serial;
|
|
};
|
|
|
|
serial: serial {
|
|
compatible = "efi,uart";
|
|
};
|
|
};
|