diff options
author | Kim Phillips <kim.phillips@freescale.com> | 2007-12-20 14:09:22 -0600 |
---|---|---|
committer | Kim Phillips <kim.phillips@freescale.com> | 2008-01-08 09:56:42 -0600 |
commit | 5b8bc606c61456566af6912f818a153b6b06f242 (patch) | |
tree | 0447d7a7e56caf3b0415324896985ab986a829b8 /cpu/mpc83xx/Makefile | |
parent | e496865ecc31a2fe2f9abfe798334bb02aaf05ab (diff) | |
download | u-boot-imx-5b8bc606c61456566af6912f818a153b6b06f242.zip u-boot-imx-5b8bc606c61456566af6912f818a153b6b06f242.tar.gz u-boot-imx-5b8bc606c61456566af6912f818a153b6b06f242.tar.bz2 |
mpc83xx: convert to using do_fixup_*()
convert to using simpler mpc85xx style fdt update code; streamline by
eliminating macros OF_SOC, OF_CPU, etc. which allows us to rm
the old school FLAT_TREE code from 83xx (since the sbc8349 was just
converted over to using libfdt).
Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
Diffstat (limited to 'cpu/mpc83xx/Makefile')
-rw-r--r-- | cpu/mpc83xx/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cpu/mpc83xx/Makefile b/cpu/mpc83xx/Makefile index 2329970..94a3cb8 100644 --- a/cpu/mpc83xx/Makefile +++ b/cpu/mpc83xx/Makefile @@ -29,7 +29,7 @@ LIB = $(obj)lib$(CPU).a START = start.o COBJS = traps.o cpu.o cpu_init.o speed.o interrupts.o \ - spd_sdram.o ecc.o qe_io.o pci.o + spd_sdram.o ecc.o qe_io.o pci.o fdt.o SRCS := $(START:.o=.S) $(SOBJS:.o=.S) $(COBJS:.o=.c) OBJS := $(addprefix $(obj),$(SOBJS) $(COBJS)) |