mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-19 03:08:31 +00:00
c65dc7d874
Some boards use device tree for almost all board-specific configuration. They therefore do not need their own separate board code, but can all use the same version. Add a common version of the board code. It uses the PMIC, regulator and video bridge uclasses. This will support smdk5250, smdk5420, snow, spring, pit and pi. Signed-off-by: Simon Glass <sjg@chromium.org>
15 lines
367 B
Makefile
15 lines
367 B
Makefile
#
|
|
# Copyright (C) 2012 Samsung Electronics
|
|
# Lukasz Majewski <l.majewski@samsung.com>
|
|
#
|
|
# SPDX-License-Identifier: GPL-2.0+
|
|
#
|
|
|
|
obj-$(CONFIG_SOFT_I2C_MULTI_BUS) += multi_i2c.o
|
|
obj-$(CONFIG_USB_GADGET_DOWNLOAD) += gadget.o
|
|
obj-$(CONFIG_MISC_COMMON) += misc.o
|
|
|
|
ifndef CONFIG_SPL_BUILD
|
|
obj-$(CONFIG_BOARD_COMMON) += board.o
|
|
obj-$(CONFIG_EXYNOS5_DT) += exynos5-dt.o
|
|
endif
|