diff options
author | wdenk <wdenk> | 2004-10-09 22:21:29 +0000 |
---|---|---|
committer | wdenk <wdenk> | 2004-10-09 22:21:29 +0000 |
commit | 1d9f410500f32b04b18b176386e77afacda7acfb (patch) | |
tree | c381f275ad04efac5da30ec72c14016b09437135 /cpu/arm920t/Makefile | |
parent | 3e01d75ff25b3668191beb86ab32cb2d1fb7f73b (diff) | |
download | u-boot-imx-1d9f410500f32b04b18b176386e77afacda7acfb.zip u-boot-imx-1d9f410500f32b04b18b176386e77afacda7acfb.tar.gz u-boot-imx-1d9f410500f32b04b18b176386e77afacda7acfb.tar.bz2 |
Patch by Steven Scholz, 16 Aug 2004:
- Introducing the concept of SoCs "./cpu/$(CPU)/$(SOC)"
- creating subdirs for SoCs ./cpu/arm920t/imx and ./cpu/arm920t/s3c24x0
- moving SoC specific code out of cpu/arm920t/ into cpu/arm920t/$(SOC)/
- moving drivers/s3c24x0_i2c.c and drivers/serial_imx.c out of drivers/
into cpu/arm920t/$(SOC)/
Diffstat (limited to 'cpu/arm920t/Makefile')
-rw-r--r-- | cpu/arm920t/Makefile | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/cpu/arm920t/Makefile b/cpu/arm920t/Makefile index 68a33d6..8f256e9 100644 --- a/cpu/arm920t/Makefile +++ b/cpu/arm920t/Makefile @@ -26,11 +26,7 @@ include $(TOPDIR)/config.mk LIB = lib$(CPU).a START = start.o -OBJS = cpu.o \ - imx_generic.o imx_interrupts.o imx_speed.o \ - interrupts.o \ - s3c24x0_interrupts.o s3c24x0_serial.o s3c24x0_speed.o \ - usb_ohci.o +OBJS = cpu.o interrupts.o all: .depend $(START) $(LIB) |