mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-13 08:27:23 +00:00
a59abd1049
Allow SPL to be built with this option so that we can support device tree control. Disable the simple bus for now in SPL. It may be needed later. Signed-off-by: Simon Glass <sjg@chromium.org>
11 lines
257 B
Makefile
11 lines
257 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
|