mirror of
https://github.com/u-boot/u-boot.git
synced 2025-05-05 11:13:32 +00:00

To avoid confusion, let's rename the efi-x86 target to efi-x86_app. Signed-off-by: Bin Meng <bmeng.cn@gmail.com> Reviewed-by: Simon Glass <sjg@chromium.org>
26 lines
354 B
Text
26 lines
354 B
Text
// 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;
|
|
};
|
|
|
|
tsc-timer {
|
|
clock-frequency = <1000000000>;
|
|
};
|
|
|
|
serial: serial {
|
|
compatible = "efi,uart";
|
|
};
|
|
};
|