diff options
author | wdenk <wdenk> | 2002-11-18 00:14:45 +0000 |
---|---|---|
committer | wdenk <wdenk> | 2002-11-18 00:14:45 +0000 |
commit | 2262cfeef91458b01a1bfe3812ccbbfdf8b82807 (patch) | |
tree | 3657d48c8ce9089fc96682848859d035a1e8f115 /Makefile | |
parent | 1d0350ed0b1b0f63e3fb5db6b19397b84a2ea1c7 (diff) | |
download | u-boot-imx-2262cfeef91458b01a1bfe3812ccbbfdf8b82807.zip u-boot-imx-2262cfeef91458b01a1bfe3812ccbbfdf8b82807.tar.gz u-boot-imx-2262cfeef91458b01a1bfe3812ccbbfdf8b82807.tar.bz2 |
* Patch by Daniel Engström, 13 Nov 2002:
Add support for i386 architecture and AMD SC520 board
* Patch by Pierre Aubert, 12 Nov 2002:
Add support for DOS filesystem and booting from DOS floppy disk
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 19 |
1 files changed, 17 insertions, 2 deletions
@@ -74,6 +74,9 @@ endif ifeq ($(ARCH),arm) CROSS_COMPILE = arm_920TDI- endif +ifeq ($(ARCH),i386) +#CROSS_COMPILE = i386-elf- +endif endif endif @@ -100,7 +103,10 @@ SUBDIRS = tools \ # U-Boot objects....order is important (i.e. start must be first) OBJS = cpu/$(CPU)/start.o - +ifeq ($(CPU),i386) +OBJS += cpu/$(CPU)/start16.o +OBJS += cpu/$(CPU)/reset.o +endif ifeq ($(CPU),ppc4xx) OBJS += cpu/$(CPU)/resetvec.o endif @@ -108,7 +114,7 @@ endif LIBS = board/$(BOARDDIR)/lib$(BOARD).a LIBS += cpu/$(CPU)/lib$(CPU).a LIBS += lib_$(ARCH)/lib$(ARCH).a -LIBS += fs/jffs2/libjffs2.a +LIBS += fs/jffs2/libjffs2.a fs/fdos/libfdos.a LIBS += net/libnet.a LIBS += disk/libdisk.a LIBS += rtc/librtc.a @@ -627,6 +633,15 @@ cradle_config : unconfig csb226_config : unconfig @./mkconfig $(@:_config=) arm xscale csb226 +#======================================================================== +# i386 +#======================================================================== +######################################################################### +## AMD SC520 CDP +######################################################################### +sc520_cdp_config : unconfig + @./mkconfig $(@:_config=) i386 i386 sc520_cdp + ######################################################################### clean: |