In SPL it is sometimes useful to be able to obtain a dump of the current driver model state. Since commands are not available, provide a way to directly call the functions to output this information. Adjust the existing commands to use these functions. Signed-off-by: Simon Glass <sjg@chromium.org>
12 lines
284 B
Makefile
12 lines
284 B
Makefile
#
|
|
# Copyright (c) 2013 Google, Inc
|
|
#
|
|
# SPDX-License-Identifier: GPL-2.0+
|
|
#
|
|
|
|
obj-$(CONFIG_DM) += device.o lists.o root.o uclass.o util.o
|
|
ifndef CONFIG_SPL_BUILD
|
|
obj-$(CONFIG_OF_CONTROL) += simple-bus.o
|
|
endif
|
|
obj-$(CONFIG_DM_DEVICE_REMOVE) += device-remove.o
|
|
obj-$(CONFIG_DM) += dump.o
|