diff options
author | Marek Vasut <marek.vasut+renesas@mailbox.org> | 2024-09-06 19:12:23 +0200 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2024-09-16 16:46:16 -0600 |
commit | 650883a568653f37ee4ff43beda56152b594a49c (patch) | |
tree | 07a9e28c0f0c199359d4f90a50c831362e6b6683 | |
parent | 6c0943ff54ec27bf3c277767c2a9e1fb458e57a0 (diff) |
cmd: osd: Depend on OSD
The OSD command calls functions from video_osd-uclass.o ,
which is built only when CONFIG_OSD is enabled. Add the
missing dependency into Kconfig.
Signed-off-by: Marek Vasut <marek.vasut+renesas@mailbox.org>
-rw-r--r-- | cmd/Kconfig | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/cmd/Kconfig b/cmd/Kconfig index 953e1f0ef2a..4ccb0cef390 100644 --- a/cmd/Kconfig +++ b/cmd/Kconfig @@ -1503,6 +1503,7 @@ config USE_ONENAND_BOARD_INIT config CMD_OSD bool "osd" + depends on OSD help Enable the 'osd' command which allows to query information from and write text data to a on-screen display (OSD) device; a virtual device |