diff options
author | Simon Glass <sjg@chromium.org> | 2016-10-17 20:12:40 -0600 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2016-10-23 18:33:21 -0400 |
commit | 27604b158fb2a85ae96e949822870bb6add10c46 (patch) | |
tree | bdd652e7e212dfc73cc4e079e9f69dbabc4a95eb /drivers/video/Kconfig | |
parent | 8f925584145efecd9a6323801689cffd69cf0b09 (diff) | |
download | u-boot-imx-27604b158fb2a85ae96e949822870bb6add10c46.zip u-boot-imx-27604b158fb2a85ae96e949822870bb6add10c46.tar.gz u-boot-imx-27604b158fb2a85ae96e949822870bb6add10c46.tar.bz2 |
Convert CONFIG_VIDEO to Kconfig
This converts the following to Kconfig:
CONFIG_VIDEO
Signed-off-by: Simon Glass <sjg@chromium.org>
Reviewed-by: Tom Rini <trini@konsulko.com>
Reviewed-by: Jagan Teki <jteki@openedev.com>
Diffstat (limited to 'drivers/video/Kconfig')
-rw-r--r-- | drivers/video/Kconfig | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/drivers/video/Kconfig b/drivers/video/Kconfig index 86db0da..866fafd 100644 --- a/drivers/video/Kconfig +++ b/drivers/video/Kconfig @@ -434,4 +434,13 @@ config VIDEO_TEGRA124 source "drivers/video/bridge/Kconfig" +config VIDEO + bool "Enable legacy video support" + depends on !DM_VIDEO + help + Define this for video support, without using driver model. Some + drivers use this because they are not yet converted to driver + model. Video drivers typically provide a colour text console and + cursor. + endmenu |