~ubuntu-branches/ubuntu/maverick/uboot-imx/maverick

« back to all changes in this revision

Viewing changes to cpu/mpc512x/Makefile

  • Committer: Bazaar Package Importer
  • Author(s): Oliver Grawert
  • Date: 2010-01-20 15:41:26 UTC
  • mfrom: (1.1.2 upstream)
  • Revision ID: james.westby@ubuntu.com-20100120154126-7bha1jeyjegu7xm5
Tags: 2009.08+really2009.01-0ubuntu1
* revert to the 2009.01 upstream version, 2009.08 has still to 
  many work in progress items in the freescale patchset (MMC and NIC
  dont work at all)
* add the latest patchset from freescale for 2009.01
* add 1002_enable_hush_shell_and_ext2.patch to enable hush shell and ext2 
* add 1003_fix_board_revision_numbers to make sure babbage 2.5 boards have 
  revision 51120 and babbage 3.0 boards have revision 51130 properly set in 
  their cpuinfo

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
#
2
 
# (C) Copyright 2007-2009 DENX Software Engineering
 
2
# (C) Copyright 2007 DENX Software Engineering
3
3
#
4
4
# See file CREDITS for list of people who contributed to this
5
5
# project.
22
22
 
23
23
include $(TOPDIR)/config.mk
24
24
 
25
 
$(shell mkdir -p $(OBJTREE)/board/freescale/common)
26
 
 
27
25
LIB     = $(obj)lib$(CPU).a
28
26
 
29
27
START   = start.o
30
 
COBJS-y := cpu.o
31
 
COBJS-y += traps.o
32
 
COBJS-y += cpu_init.o
33
 
COBJS-y += fixed_sdram.o
34
 
COBJS-y += i2c.o
35
 
COBJS-y += interrupts.o
36
 
COBJS-y += iopin.o
37
 
COBJS-y += serial.o
38
 
COBJS-y += speed.o
39
 
COBJS-${CONFIG_FSL_DIU_FB} += diu.o
40
 
COBJS-${CONFIG_FSL_DIU_FB} += ../../board/freescale/common/fsl_diu_fb.o
41
 
COBJS-${CONFIG_FSL_DIU_FB} += ../../board/freescale/common/fsl_logo_bmp.o
42
 
COBJS-${CONFIG_CMD_IDE} += ide.o
43
 
COBJS-${CONFIG_IIM} += iim.o
44
 
COBJS-$(CONFIG_PCI) += pci.o
 
28
COBJS   = traps.o cpu.o cpu_init.o speed.o interrupts.o serial.o i2c.o iopin.o
45
29
 
46
 
COBJS   := $(COBJS-y)
47
30
SRCS    := $(START:.o=.S) $(SOBJS:.o=.S) $(COBJS:.o=.c)
48
31
OBJS    := $(addprefix $(obj),$(SOBJS) $(COBJS))
49
32
START   := $(addprefix $(obj),$(START))