diff options
author | Mario Six <mario.six@gdsys.cc> | 2018-09-27 09:19:34 +0200 |
---|---|---|
committer | Anatolij Gustschin <agust@denx.de> | 2018-09-28 18:27:33 +0200 |
commit | 3bf65cb56cc844473146d977b21c64504f191aff (patch) | |
tree | 9dcc5d5cdad3128eaa2d23a0ac413e09ea08014c /board/gdsys/mpc8308 | |
parent | 87be2fe6ec1a689362a03a8e04a6abf6029ee2d1 (diff) | |
download | u-boot-3bf65cb56cc844473146d977b21c64504f191aff.tar.gz |
cmd: Add osd commands
Add command to query information from and write text to on-screen
display (OSD) devices.
Signed-off-by: Mario Six <mario.six@gdsys.cc>
Reviewed-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'board/gdsys/mpc8308')
-rw-r--r-- | board/gdsys/mpc8308/Kconfig | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/board/gdsys/mpc8308/Kconfig b/board/gdsys/mpc8308/Kconfig index cb29c25c65..9d99f68692 100644 --- a/board/gdsys/mpc8308/Kconfig +++ b/board/gdsys/mpc8308/Kconfig @@ -1,3 +1,9 @@ +config GDSYS_LEGACY_OSD_CMDS + bool + help + Use the 'osdw', 'osdp', and 'osdsize' legacy commands required by + gdsys devices. + if TARGET_HRCON config SYS_BOARD @@ -9,6 +15,9 @@ config SYS_VENDOR config SYS_CONFIG_NAME default "hrcon" +config GDSYS_LEGACY_OSD_CMDS + default y + endif if TARGET_STRIDER @@ -22,6 +31,8 @@ config SYS_VENDOR config SYS_CONFIG_NAME default "strider" +config GDSYS_LEGACY_OSD_CMDS + default y endif config CMD_IOLOOP |