diff options
author | Simon Glass <sjg@chromium.org> | 2017-05-17 03:25:28 -0600 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2017-05-22 12:45:22 -0400 |
commit | 7a01f3c6f401cf36d21121e3207ce8044bd18be4 (patch) | |
tree | e8b859f7002227dfe5379915dcd034dc62a88128 /arch/arm/imx-common/Kconfig | |
parent | e8e09ba5b7466a19bbb61d5e00348f5363ad2977 (diff) |
Convert CONFIG_CMD_HDMIDETECT to Kconfig
This converts the following to Kconfig:
CONFIG_CMD_HDMIDETECT
Note that we cannot do 'default y if VIDEO' because this option is only
enabled for a small subset of mx6 boards. Also this command is is not a
great implementation (it doesn't use driver model).
Signed-off-by: Simon Glass <sjg@chromium.org>
Reviewed-by: Tom Rini <trini@konsulko.com>
Diffstat (limited to 'arch/arm/imx-common/Kconfig')
-rw-r--r-- | arch/arm/imx-common/Kconfig | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/arch/arm/imx-common/Kconfig b/arch/arm/imx-common/Kconfig index 25cbd12c89..cd8b8d2882 100644 --- a/arch/arm/imx-common/Kconfig +++ b/arch/arm/imx-common/Kconfig @@ -55,3 +55,9 @@ config CMD_DEKBLOB Freescale secure boot mechanism. This command encapsulates and creates a blob of data. See also CMD_BLOB and doc/README.mxc_hab for more information. + +config CMD_HDMIDETECT + bool "Support the 'hdmidet' command" + help + This enables the 'hdmidet' command which detects if an HDMI monitor + is connected. |