mirror of
https://github.com/AsahiLinux/u-boot
synced 2025-03-14 22:07:02 +00:00
Introduce a common fdt operations library for basic device tree operations that are common between various boards. The first library to introduce here is the capability to set up fdtfile as a standard variable as part of board identification rather than depend on scripted ifdeffery. Reviewed-by: Jonathan Humphreys <j-humphreys@ti.com> Reviewed-by: Roger Quadros <rogerq@kernel.org> Signed-off-by: Nishanth Menon <nm@ti.com>
6 lines
250 B
Makefile
6 lines
250 B
Makefile
# SPDX-License-Identifier: GPL-2.0+
|
|
# Copyright (C) 2015-2016 Texas Instruments Incorporated - https://www.ti.com/
|
|
|
|
obj-${CONFIG_TI_I2C_BOARD_DETECT} += board_detect.o
|
|
obj-${CONFIG_CMD_EXTENSION} += cape_detect.o
|
|
obj-${CONFIG_OF_LIBFDT} += fdt_ops.o
|