mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-05 20:54:31 +00:00
3c42c0f673
There are different parts from one SoC. Take i.MX6ULL for example, some part might not have ENET, some might have; some might not have USB, some might have. The information could be got from OCOTP, to make one image support the different parts, we need runtime disable linux kernel dts node and uboot driver probe if the corresponding module not exists in the part. Signed-off-by: Peng Fan <peng.fan@nxp.com>
13 lines
403 B
Makefile
13 lines
403 B
Makefile
# SPDX-License-Identifier: GPL-2.0+
|
|
#
|
|
# (C) Copyright 2000-2006
|
|
# Wolfgang Denk, DENX Software Engineering, wd@denx.de.
|
|
#
|
|
# (C) Copyright 2011 Freescale Semiconductor, Inc.
|
|
|
|
obj-y := soc.o clock.o
|
|
obj-$(CONFIG_IMX_MODULE_FUSE) += module_fuse.o
|
|
obj-$(CONFIG_SPL_BUILD) += ddr.o
|
|
obj-$(CONFIG_MP) += mp.o
|
|
obj-$(CONFIG_MX6UL_LITESOM) += litesom.o
|
|
obj-$(CONFIG_MX6UL_OPOS6UL) += opos6ul.o
|