summaryrefslogtreecommitdiff
path: root/test/cmd/Makefile
diff options
context:
space:
mode:
authorHeinrich Schuchardt <[email protected]>2025-11-23 23:57:02 +0100
committerTom Rini <[email protected]>2025-12-05 08:54:44 -0600
commit061cdb247cb41decbc598d301cbb20131948f06b (patch)
treeefc6963c62b0b442f062f592fee79447114b0355 /test/cmd/Makefile
parent24bf56f36d00bd7c2b46a6dd7e9e7cef5fc15fbd (diff)
test: the cmd/font test requires the sandbox
The font test makes assumptions about video devices and selected fonts that may not hold true on other configurations like qemu-x86_64_defconfig. Signed-off-by: Heinrich Schuchardt <[email protected]>
Diffstat (limited to 'test/cmd/Makefile')
-rw-r--r--test/cmd/Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/cmd/Makefile b/test/cmd/Makefile
index d7ff11e458a..2476068aee6 100644
--- a/test/cmd/Makefile
+++ b/test/cmd/Makefile
@@ -19,7 +19,6 @@ endif
obj-$(CONFIG_CMD_BDI) += bdinfo.o
obj-$(CONFIG_COREBOOT_SYSINFO) += coreboot.o
obj-$(CONFIG_CMD_FDT) += fdt.o
-obj-$(CONFIG_CONSOLE_TRUETYPE) += font.o
obj-$(CONFIG_CMD_HASH) += hash.o
obj-$(CONFIG_CMD_HISTORY) += history.o
obj-$(CONFIG_CMD_I3C) += i3c.o
@@ -33,6 +32,7 @@ endif
obj-$(CONFIG_CMD_QFW) += qfw.o
obj-$(CONFIG_CMD_SEAMA) += seama.o
ifdef CONFIG_SANDBOX
+obj-$(CONFIG_CONSOLE_TRUETYPE) += font.o
obj-$(CONFIG_CMD_MBR) += mbr.o
obj-$(CONFIG_CMD_PINMUX) += pinmux.o
obj-$(CONFIG_CMD_PWM) += pwm.o