diff options
| author | Matthias Fuchs <[email protected]> | 2009-09-04 10:37:04 +0200 |
|---|---|---|
| committer | Tom Rix <[email protected]> | 2009-10-03 09:04:18 -0500 |
| commit | 1fda4e9df14bf7d939da20c26e04bd0ab877b1e7 (patch) | |
| tree | a3cb51aac6c6a469d9f047896296cc2ba99dc3c6 | |
| parent | 6d0363b23a2ee467c0f498cf52f4089e5e3427ad (diff) | |
ppc4xx: Fix PMC405DE support
This patch fixes PMC405DE support. Patch 85d6bf0b fixed out-of-tree
building for this board but the loadpci object did not get linked
after that.
Signed-off-by: Matthias Fuchs <[email protected]>
Signed-off-by: Stefan Roese <[email protected]>
| -rw-r--r-- | board/esd/pmc405de/Makefile | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/board/esd/pmc405de/Makefile b/board/esd/pmc405de/Makefile index 327e51e6071..f435495767a 100644 --- a/board/esd/pmc405de/Makefile +++ b/board/esd/pmc405de/Makefile @@ -22,12 +22,15 @@ # include $(TOPDIR)/config.mk +ifneq ($(OBJTREE),$(SRCTREE)) +$(shell mkdir -p $(obj)../common) +endif LIB = $(obj)lib$(BOARD).a COBJS-y = $(BOARD).o COBJS-$(CONFIG_CMD_CHIP_CONFIG) += chip_config.o -COBJS += ../common/cmd_loadpci.o +COBJS-y += ../common/cmd_loadpci.o COBJS := $(COBJS-y) SRCS := $(SOBJS:.o=.S) $(COBJS:.o=.c) |
