diff options
author | Francois Retief <fgretief@spaceteq.co.za> | 2015-10-28 14:29:32 +0200 |
---|---|---|
committer | Francois Retief <fgretief@spaceteq.co.za> | 2015-12-03 13:15:48 +0200 |
commit | e17c5200c7e9a802783a53d4f4457fa68f7fa074 (patch) | |
tree | 3d6c2fe4a6deb1c4b1f1dfac50482b15e710b726 /arch/sparc/lib | |
parent | a5b629a33e717e794db8db5b0fedbd3aa254e711 (diff) | |
download | u-boot-e17c5200c7e9a802783a53d4f4457fa68f7fa074.tar.gz |
sparc: Initial ground work for generic board initialization
Initial ground work in preperation for generic board initialization
code for the SPARC architecture.
Signed-off-by: Francois Retief <fgretief@spaceteq.co.za>
Diffstat (limited to 'arch/sparc/lib')
-rw-r--r-- | arch/sparc/lib/Makefile | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/arch/sparc/lib/Makefile b/arch/sparc/lib/Makefile index e69b9ba426..6bddd4c8a1 100644 --- a/arch/sparc/lib/Makefile +++ b/arch/sparc/lib/Makefile @@ -1,9 +1,13 @@ # -# (C) Copyright 2000-2006 +# (C) Copyright 2000-2015 # Wolfgang Denk, DENX Software Engineering, wd@denx.de. # # SPDX-License-Identifier: GPL-2.0+ # -obj-y = board.o cache.o interrupts.o time.o +obj-y = cache.o interrupts.o time.o obj-$(CONFIG_CMD_BOOTM) += bootm.o + +ifndef CONFIG_SYS_GENERIC_BOARD +obj-y += board.o +endif |