From e96fbddab4204d341a1f8bb1f89f4af618c22975 Mon Sep 17 00:00:00 2001 From: Emmanuel Blot Date: Wed, 13 Dec 2023 10:41:26 +0100 Subject: [PATCH] [ot] hw/opentitan: fix jtag component build JTAG requires CharDevice which is not available on user-only emulation. Build JTAG component only for system builds Signed-off-by: Emmanuel Blot --- jtag/meson.build | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/jtag/meson.build b/jtag/meson.build index 3182a68f62d7..469801d7de87 100644 --- a/jtag/meson.build +++ b/jtag/meson.build @@ -1 +1 @@ -common_ss.add(files('jtag_bitbang.c')) +system_ss.add(files('jtag_bitbang.c'))