From 8de536c27c10bbbd7bd974b68718f3c788e4e8af Mon Sep 17 00:00:00 2001 From: Simon Glass Date: Thu, 14 Jan 2016 18:10:49 -0700 Subject: video: sandbox: Allow selection of font size and console name For testing it is useful to be able to select the font size and the console driver for sandbox. Add this information to platform data and copy it to the video device when needed. Signed-off-by: Simon Glass --- include/dm/test.h | 2 ++ 1 file changed, 2 insertions(+) (limited to 'include') diff --git a/include/dm/test.h b/include/dm/test.h index ca924d9237..cba504909a 100644 --- a/include/dm/test.h +++ b/include/dm/test.h @@ -161,6 +161,8 @@ struct sandbox_sdl_plat { int yres; int bpix; int rot; + const char *vidconsole_drv_name; + int font_size; }; /* Declare ping methods for the drivers */ -- cgit v1.2.1