mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-05 20:54:31 +00:00
6963204c4c
Add initial support for Compulab cl-som-imx7 SoM. The initial support includes: - MMC - eMMC - SPI flash - I2C - FEC - USB - Serial console Signed-off-by: Ilya Ledvich <ilya@compulab.co.il>
17 lines
274 B
Makefile
17 lines
274 B
Makefile
#
|
|
# Makefile
|
|
#
|
|
# (C) Copyright 2017 CompuLab, Ltd. http://www.compulab.com
|
|
#
|
|
# Author: Uri Mashiach <uri.mashiach@compulab.co.il>
|
|
#
|
|
# SPDX-License-Identifier: GPL-2.0+
|
|
#
|
|
|
|
obj-y := mux.o common.o
|
|
|
|
ifdef CONFIG_SPL_BUILD
|
|
obj-y += spl.o
|
|
else
|
|
obj-y += cl-som-imx7.o
|
|
endif
|