mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-11 23:47:24 +00:00
b6a49a7ae7
The GPIO tests require the sandbox GPIO driver, so cannot be run on other platforms. Similarly for the 'dm test' command. Signed-off-by: Simon Glass <sjg@chromium.org>
20 lines
536 B
Makefile
20 lines
536 B
Makefile
#
|
|
# Copyright (c) 2013 Google, Inc
|
|
#
|
|
# SPDX-License-Identifier: GPL-2.0+
|
|
#
|
|
|
|
obj-$(CONFIG_CMD_DM) += cmd_dm.o
|
|
obj-$(CONFIG_DM_TEST) += test-driver.o
|
|
obj-$(CONFIG_DM_TEST) += test-fdt.o
|
|
obj-$(CONFIG_DM_TEST) += test-main.o
|
|
obj-$(CONFIG_DM_TEST) += test-uclass.o
|
|
obj-$(CONFIG_DM_TEST) += ut.o
|
|
|
|
# Tests for particular subsystems - when enabling driver model for a new
|
|
# subsystem you must add sandbox tests here.
|
|
obj-$(CONFIG_DM_TEST) += core.o
|
|
obj-$(CONFIG_DM_TEST) += ut.o
|
|
ifneq ($(CONFIG_SANDBOX),)
|
|
obj-$(CONFIG_DM_GPIO) += gpio.o
|
|
endif
|