From patchwork Thu Jan 23 06:15:25 2020 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Olliver Schinagl X-Patchwork-Id: 239948 List-Id: U-Boot discussion From: oliver at schinagl.nl (Olliver Schinagl) Date: Thu, 23 Jan 2020 07:15:25 +0100 Subject: [PATCH] Kconfig/fpgad: Add dependencies Message-ID: <20200123061525.15370-1-oliver@schinagl.nl> Until the fpgad command is converted to driver model; it will depend on some drivers to implement said features. cmd/built-in.o: In function `do_fpga_md': cmd/fpgad.c:73: undefined reference to `fpga_get_reg' cmd/fpgad.c:85: undefined reference to `fpga_ptr' Signed-off-by: Olliver Schinagl --- cmd/Kconfig | 1 + 1 file changed, 1 insertion(+) diff --git a/cmd/Kconfig b/cmd/Kconfig index 6e1efaaf85..0925236c0c 100644 --- a/cmd/Kconfig +++ b/cmd/Kconfig @@ -924,6 +924,7 @@ config CMD_FPGA_LOAD_SECURE config CMD_FPGAD bool "fpgad - dump FPGA registers" + depends on HRCON || STRIDER help (legacy, needs conversion to driver model) Provides a way to dump FPGA registers by calling the board-specific