diff options
author | Mike Frysinger <vapier@gentoo.org> | 2008-04-19 00:44:11 (GMT) |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2009-01-28 18:26:13 (GMT) |
commit | fee531eeefc3b5f2c63c7fe27b9f55d924c59c26 (patch) | |
tree | f51930bf1db60eb3c3d642afb1580d92621b13d2 /board/bf533-stamp/Makefile | |
parent | a750d038f2548d846ea1e046d873dc932d041319 (diff) | |
download | u-boot-fee531eeefc3b5f2c63c7fe27b9f55d924c59c26.tar.xz |
Blackfin: resurrect BF533-STAMP video splash driver
This video driver used to live in the Blackfin cpu directory, but it was
lost during the unification process. This brings it back.
Signed-off-by: Mike Frysinger <vapier@gentoo.org>
Diffstat (limited to 'board/bf533-stamp/Makefile')
-rw-r--r-- | board/bf533-stamp/Makefile | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/board/bf533-stamp/Makefile b/board/bf533-stamp/Makefile index 5ae0228..5b5e199 100644 --- a/board/bf533-stamp/Makefile +++ b/board/bf533-stamp/Makefile @@ -1,7 +1,7 @@ # # U-boot - Makefile # -# Copyright (c) 2005-2007 Analog Device Inc. +# Copyright (c) 2005-2008 Analog Device Inc. # # (C) Copyright 2000-2006 # Wolfgang Denk, DENX Software Engineering, wd@denx.de. @@ -29,10 +29,11 @@ include $(TOPDIR)/config.mk LIB = $(obj)lib$(BOARD).a -COBJS := $(BOARD).o spi_flash.o +COBJS-y := $(BOARD).o spi_flash.o +COBJS-$(CONFIG_VIDEO) += video.o -SRCS := $(SOBJS:.o=.S) $(COBJS:.o=.c) -OBJS := $(addprefix $(obj),$(COBJS)) +SRCS := $(SOBJS:.o=.S) $(COBJS-y:.o=.c) +OBJS := $(addprefix $(obj),$(COBJS-y)) SOBJS := $(addprefix $(obj),$(SOBJS)) $(LIB): $(obj).depend $(OBJS) $(SOBJS) $(obj)u-boot.lds |