mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-12-05 02:51:00 +00:00
447dfbc063
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 <stcarlso@linux.microsoft.com>
28 lines
780 B
Makefile
28 lines
780 B
Makefile
# SPDX-License-Identifier: GPL-2.0+
|
|
#
|
|
# Copyright (c) 2013 Google, Inc
|
|
|
|
ifdef CONFIG_HUSH_PARSER
|
|
obj-$(CONFIG_CONSOLE_RECORD) += test_echo.o
|
|
endif
|
|
ifdef CONFIG_CONSOLE_RECORD
|
|
obj-$(CONFIG_CMD_PAUSE) += test_pause.o
|
|
endif
|
|
obj-y += exit.o mem.o
|
|
obj-$(CONFIG_CMD_ADDRMAP) += addrmap.o
|
|
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
|
|
ifdef CONFIG_SANDBOX
|
|
obj-$(CONFIG_CMD_READ) += rw.o
|
|
obj-$(CONFIG_CMD_SETEXPR) += setexpr.o
|
|
endif
|
|
obj-$(CONFIG_CMD_TEMPERATURE) += temperature.o
|
|
obj-$(CONFIG_CMD_WGET) += wget.o
|