drivers: video: Kconfig: Add config remove video
This is required since user may want to either call the remove method of video driver and reset the display or not call the remove method to continue displaying until next stage. Signed-off-by: Nikhil M Jain <n-jain1@ti.com>
This commit is contained in:
parent
ad28a7d3e5
commit
50e7d137e1
|
|
@ -779,6 +779,13 @@ config IHS_VIDEO_OUT
|
||||||
out On-screen Display (OSD) used on gdsys FPGAs to control dynamic
|
out On-screen Display (OSD) used on gdsys FPGAs to control dynamic
|
||||||
textual overlays of the display outputs.
|
textual overlays of the display outputs.
|
||||||
|
|
||||||
|
config VIDEO_REMOVE
|
||||||
|
bool "Remove video driver"
|
||||||
|
help
|
||||||
|
Use this option to specify if user wants to call remove method of
|
||||||
|
video driver in u-boot proper stage.
|
||||||
|
|
||||||
|
|
||||||
config SPLASH_SCREEN
|
config SPLASH_SCREEN
|
||||||
bool "Show a splash-screen image"
|
bool "Show a splash-screen image"
|
||||||
help
|
help
|
||||||
|
|
@ -1002,6 +1009,12 @@ config SPL_SYS_WHITE_ON_BLACK
|
||||||
This can be better in low-light situations or to reduce eye strain in
|
This can be better in low-light situations or to reduce eye strain in
|
||||||
some cases.
|
some cases.
|
||||||
|
|
||||||
|
config SPL_VIDEO_REMOVE
|
||||||
|
bool "Remove video driver after SPL stage"
|
||||||
|
help
|
||||||
|
if this option is enabled video driver will be removed at the end of
|
||||||
|
SPL stage, beforeloading the next stage.
|
||||||
|
|
||||||
if SPL_SPLASH_SCREEN
|
if SPL_SPLASH_SCREEN
|
||||||
|
|
||||||
config SPL_SPLASH_SCREEN_ALIGN
|
config SPL_SPLASH_SCREEN_ALIGN
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue