summaryrefslogtreecommitdiff
path: root/test/cmd/Makefile
diff options
context:
space:
mode:
authorStephen Carlson <[email protected]>2023-03-10 11:07:15 -0800
committerTom Rini <[email protected]>2023-03-30 15:09:59 -0400
commit447dfbc0638f65accaeba1afa3b33840bdb46b6e (patch)
tree8bcd6106c63f87c1f702d95a5a18950aecc1f38a /test/cmd/Makefile
parent713db6f6d3a3212270fd12ba5c47e986b36dbc39 (diff)
test: Add test for new command pci_mps
Adds a test for the new pci_mps command to ensure that it can set the Maximum Payload Size (MPS) of all devices to 256 bytes in the sandbox environment. Enables the pci_mps command in the sandbox environment so that this test can be run. Signed-off-by: Stephen Carlson <[email protected]>
Diffstat (limited to 'test/cmd/Makefile')
-rw-r--r--test/cmd/Makefile3
1 files changed, 3 insertions, 0 deletions
diff --git a/test/cmd/Makefile b/test/cmd/Makefile
index 7848f348bc4..055adc65a25 100644
--- a/test/cmd/Makefile
+++ b/test/cmd/Makefile
@@ -14,6 +14,9 @@ obj-$(CONFIG_CMD_FDT) += fdt.o
obj-$(CONFIG_CONSOLE_TRUETYPE) += font.o
obj-$(CONFIG_CMD_LOADM) += loadm.o
obj-$(CONFIG_CMD_MEM_SEARCH) += mem_search.o
+ifdef CONFIG_CMD_PCI
+obj-$(CONFIG_CMD_PCI_MPS) += pci_mps.o
+endif
obj-$(CONFIG_CMD_PINMUX) += pinmux.o
obj-$(CONFIG_CMD_PWM) += pwm.o
obj-$(CONFIG_CMD_SEAMA) += seama.o