summaryrefslogtreecommitdiff
path: root/board/xes/common/Makefile
diff options
context:
space:
mode:
authorJohn Schmoller <jschmoller@xes-inc.com>2010-10-22 05:20:24 (GMT)
committerKumar Gala <galak@kernel.crashing.org>2010-10-22 07:17:16 (GMT)
commit92af6549b8c52e9c973e4e197aa4d1edf4df5803 (patch)
treee190db70b9f506251792b1cdd6585534a017ee91 /board/xes/common/Makefile
parent96d6160324c49c81df10b6b4c75d2470cb30dce4 (diff)
downloadu-boot-92af6549b8c52e9c973e4e197aa4d1edf4df5803.tar.xz
xes: Consolidate checkboard()
Create a common checkboard() function to support all X-ES's Freescale boards. Also, add a get_board_derivative() function which reads hardware strapping resistors to determine what model a board is. This allows one U-Boot image to support multiple boards. Signed-off-by: John Schmoller <jschmoller@xes-inc.com> Signed-off-by: Peter Tyser <ptyser@xes-inc.com> Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
Diffstat (limited to 'board/xes/common/Makefile')
-rw-r--r--board/xes/common/Makefile2
1 files changed, 2 insertions, 0 deletions
diff --git a/board/xes/common/Makefile b/board/xes/common/Makefile
index d022831..bfade31 100644
--- a/board/xes/common/Makefile
+++ b/board/xes/common/Makefile
@@ -33,6 +33,8 @@ COBJS-$(CONFIG_FSL_PCI_INIT) += fsl_8xxx_pci.o
COBJS-$(CONFIG_MPC8572) += fsl_8xxx_clk.o
COBJS-$(CONFIG_MPC86xx) += fsl_8xxx_clk.o
COBJS-$(CONFIG_FSL_DDR2) += fsl_8xxx_ddr.o
+COBJS-$(CONFIG_MPC85xx) += fsl_8xxx_misc.o board.o
+COBJS-$(CONFIG_MPC86xx) += fsl_8xxx_misc.o board.o
COBJS-$(CONFIG_NAND_ACTL) += actl_nand.o
SRCS := $(SOBJS:.o=.S) $(COBJS-y:.o=.c)