mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-17 02:08:38 +00:00
f62229227c
Add support for this to EFI in case it becomes useful. At present it just slows things down. You can enable CONFIG_VIDEO_COPY to turn it on. Signed-off-by: Simon Glass <sjg@chromium.org>
33 lines
417 B
Text
33 lines
417 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;
|
|
};
|
|
|
|
serial: serial {
|
|
compatible = "efi,uart";
|
|
};
|
|
|
|
reset {
|
|
compatible = "efi,reset";
|
|
bootph-all;
|
|
};
|
|
efi-fb {
|
|
compatible = "efi-fb";
|
|
bootph-some-ram;
|
|
};
|
|
|
|
};
|