diff options
author | Nikita Kiryanov <nikita@compulab.co.il> | 2014-09-07 15:59:29 (GMT) |
---|---|---|
committer | Stefano Babic <sbabic@denx.de> | 2014-09-09 13:35:43 (GMT) |
commit | e32028a70ba2be17732b21f98b242d9fe3d977cf (patch) | |
tree | 0288eb3fb899e4440b141c9697a2c37b151c5675 /board/compulab/cm_fx6/Makefile | |
parent | ea818ae74824fecf252fc64090295d68b2998e9c (diff) | |
download | u-boot-fsl-qoriq-e32028a70ba2be17732b21f98b242d9fe3d977cf.tar.xz |
arm: mx6: add support for Compulab cm-fx6 CoM
Add initial support for Compulab CM-FX6 CoM.
Support includes MMC, SPI flash, and SPL with dynamic DRAM detection.
Cc: Igor Grinberg <grinberg@compulab.co.il>
Cc: Stefano Babic <sbabic@denx.de>
Cc: Tom Rini <trini@ti.com>
Cc: Marek Vasut <marex@denx.de>
Cc: Simon Glass <sjg@chromium.org>
Acked-by: Marek Vasut <marex@denx.de>
Signed-off-by: Nikita Kiryanov <nikita@compulab.co.il>
Diffstat (limited to 'board/compulab/cm_fx6/Makefile')
-rw-r--r-- | board/compulab/cm_fx6/Makefile | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/board/compulab/cm_fx6/Makefile b/board/compulab/cm_fx6/Makefile new file mode 100644 index 0000000..3e5c903 --- /dev/null +++ b/board/compulab/cm_fx6/Makefile @@ -0,0 +1,12 @@ +# +# (C) Copyright 2014 CompuLab, Ltd. <www.compulab.co.il> +# +# Authors: Nikita Kiryanov <nikita@compulab.co.il> +# +# SPDX-License-Identifier: GPL-2.0+ +# +ifdef CONFIG_SPL_BUILD +obj-y = common.o spl.o +else +obj-y = common.o cm_fx6.o +endif |