mirror of
https://source.denx.de/u-boot/u-boot.git
synced 2025-08-14 11:16:58 +02:00
Now that Linux has accepted these tags, move the device tree files in U-Boot over to use them. Signed-off-by: Simon Glass <sjg@chromium.org>
33 lines
398 B
Plaintext
33 lines
398 B
Plaintext
// SPDX-License-Identifier: GPL-2.0+
|
|
/*
|
|
* Copyright (c) 2015 Google, Inc
|
|
*/
|
|
|
|
/dts-v1/;
|
|
|
|
/include/ "skeleton.dtsi"
|
|
|
|
#include "tsc_timer.dtsi"
|
|
|
|
/ {
|
|
model = "EFI x86 Application";
|
|
compatible = "efi,x86-app";
|
|
|
|
chosen {
|
|
stdout-path = &serial;
|
|
};
|
|
|
|
serial: serial {
|
|
compatible = "efi,uart";
|
|
};
|
|
|
|
reset {
|
|
compatible = "efi,reset";
|
|
bootph-all;
|
|
};
|
|
efi-fb {
|
|
compatible = "efi-fb";
|
|
};
|
|
|
|
};
|