mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-11 15:37:23 +00:00
0681195977
This command is not required for driver model operation, but can be useful for testing. It provides simple dumps of internal data structures. Signed-off-by: Simon Glass <sjg@chromium.org> Signed-off-by: Marek Vasut <marex@denx.de> Signed-off-by: Pavel Herrmann <morpheus.ibis@gmail.com> Signed-off-by: Viktor Křivák <viktor.krivak@gmail.com> Signed-off-by: Tomas Hlavacek <tmshlvck@gmail.com>
18 lines
503 B
Makefile
18 lines
503 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
|
|
obj-$(CONFIG_DM_GPIO) += gpio.o
|