diff options
author | Christian Gmeiner <christian.gmeiner@gmail.com> | 2015-01-19 17:26:49 +0100 |
---|---|---|
committer | Stefano Babic <sbabic@denx.de> | 2015-01-22 11:03:19 +0100 |
commit | 532491712610ef903e5f53b1da799fc0011829e0 (patch) | |
tree | d1662c31f6734daa063d96023ffd8f07912cedad /board/bachmann/ot1200/Makefile | |
parent | 68a3664aec94c10213f082dabe4921f556bdc928 (diff) | |
download | u-boot-532491712610ef903e5f53b1da799fc0011829e0.tar.gz |
ot1200: add basic SPL support
Currently we only support the Micron MT41K128M16JT-125 ddr3 chip.
Signed-off-by: Christian Gmeiner <christian.gmeiner@gmail.com>
Diffstat (limited to 'board/bachmann/ot1200/Makefile')
-rw-r--r-- | board/bachmann/ot1200/Makefile | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/board/bachmann/ot1200/Makefile b/board/bachmann/ot1200/Makefile index 1bd42e8321..9e50bfeb86 100644 --- a/board/bachmann/ot1200/Makefile +++ b/board/bachmann/ot1200/Makefile @@ -6,4 +6,8 @@ # SPDX-License-Identifier: GPL-2.0+ # +ifdef CONFIG_SPL_BUILD +obj-y := ot1200.o ot1200_spl.o +else obj-y := ot1200.o +endif |