mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-06 05:04:26 +00:00
7d95f2a329
Add a simple LCD driver which uses SDL to display the image. We update the image regularly, while still providing for reasonable performance. Adjust the common lcd code to support sandbox. For command-line runs we do not want the LCD to be displayed, so add a --show_lcd option to enable it. Tested-by: Che-Liang Chiou <clchiou@chromium.org> Signed-off-by: Simon Glass <sjg@chromium.org>
13 lines
207 B
Text
13 lines
207 B
Text
Sandbox LCD
|
|
===========
|
|
|
|
This uses the displaymode.txt binding except that only xres and yres are
|
|
required properties.
|
|
|
|
Example:
|
|
|
|
lcd {
|
|
compatible = "sandbox,lcd-sdl";
|
|
xres = <800>;
|
|
yres = <600>;
|
|
};
|