From: Tom Rini Date: Mon, 28 Oct 2024 16:48:43 +0000 (-0600) Subject: test/hush: Add CONFIG_CONSOLE_RECORD where required X-Git-Url: http://git.dujemihanovic.xyz/%22http:/www.sics.se/static/git-favicon.png?a=commitdiff_plain;h=2d42f7d9018a9c7bf7e65780d6505280a46c0cda;p=u-boot.git test/hush: Add CONFIG_CONSOLE_RECORD where required The "dollar" tests require CONFIG_CONSOLE_RECORD to be enabled so guard with that. Reviewed-by: Heinrich Schuchardt Signed-off-by: Tom Rini --- diff --git a/test/hush/Makefile b/test/hush/Makefile index a2d98815e5..4c3a0be857 100644 --- a/test/hush/Makefile +++ b/test/hush/Makefile @@ -5,6 +5,8 @@ obj-y += cmd_ut_hush.o obj-y += if.o +ifdef CONFIG_CONSOLE_RECORD obj-y += dollar.o +endif obj-y += list.o obj-y += loop.o