mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-11 07:34:31 +00:00
7a8e9bed17
Fixed rarp boot method for IA32 and other little-endian CPUs. * Patch by Marc Singer, 28 May 2003: Added port I/O commands. * Patch by Matthew McClintock, 28 May 2003 - cpu/mpc824x/start.S: fix relocation code when booting from RAM - minor patches for utx8245 * Patch by Daniel Engström, 28 May 2003: x86 update * Patch by Dave Ellis, 9 May 2003 + 27 May 2003: add nand flash support to SXNI855T configuration fix/extend nand flash support: - fix 'nand erase' command so does not erase bad blocks - fix 'nand write' command so does not write to bad blocks - fix nand_probe() so handles no flash detected properly - add doc/README.nand - add .jffs2 and .oob options to nand read/write - add 'nand bad' command to list bad blocks - add 'clean' option to 'nand erase' to write JFFS2 clean markers - make NAND read/write faster * Patch by Rune Torgersen, 23 May 2003: Update for MPC8266ADS board
69 lines
2.2 KiB
Makefile
69 lines
2.2 KiB
Makefile
#
|
|
# (C) Copyright 2000, 2001
|
|
# Wolfgang Denk, DENX Software Engineering, wd@denx.de.
|
|
#
|
|
# See file CREDITS for list of people who contributed to this
|
|
# project.
|
|
#
|
|
# This program is free software; you can redistribute it and/or
|
|
# modify it under the terms of the GNU General Public License as
|
|
# published by the Free Software Foundation; either version 2 of
|
|
# the License, or (at your option) any later version.
|
|
#
|
|
# This program is distributed in the hope that it will be useful,
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
# GNU General Public License for more details.
|
|
#
|
|
# You should have received a copy of the GNU General Public License
|
|
# along with this program; if not, write to the Free Software
|
|
# Foundation, Inc., 59 Temple Place, Suite 330, Boston,
|
|
# MA 02111-1307 USA
|
|
#
|
|
|
|
include $(TOPDIR)/config.mk
|
|
|
|
LIB = libcommon.a
|
|
|
|
AOBJS =
|
|
|
|
COBJS = main.o altera.o bedbug.o \
|
|
cmd_autoscript.o cmd_bedbug.o cmd_bmp.o cmd_boot.o \
|
|
cmd_bootm.o cmd_cache.o cmd_console.o cmd_date.o \
|
|
cmd_dcr.o cmd_diag.o cmd_doc.o cmd_nand.o cmd_dtt.o \
|
|
cmd_eeprom.o cmd_elf.o cmd_fdc.o cmd_fdos.o cmd_flash.o \
|
|
cmd_fpga.o cmd_i2c.o cmd_ide.o cmd_immap.o \
|
|
cmd_jffs2.o cmd_log.o cmd_mem.o cmd_mii.o cmd_misc.o \
|
|
cmd_net.o cmd_nvedit.o env_common.o \
|
|
env_flash.o env_eeprom.o env_nvram.o env_nowhere.o \
|
|
cmd_pci.o cmd_pcmcia.o cmd_portio.o \
|
|
cmd_reginfo.o cmd_scsi.o cmd_vfd.o cmd_usb.o \
|
|
command.o console.o devices.o dlmalloc.o \
|
|
docecc.o environment.o flash.o fpga.o \
|
|
hush.o kgdb.o lists.o miiphybb.o miiphyutil.o \
|
|
s_record.o soft_i2c.o soft_spi.o cmd_spi.o spartan2.o \
|
|
usb.o usb_kbd.o usb_storage.o \
|
|
virtex2.o xilinx.o
|
|
|
|
OBJS = $(AOBJS) $(COBJS)
|
|
|
|
CPPFLAGS += -I..
|
|
|
|
all: $(LIB) $(AOBJS)
|
|
|
|
$(LIB): .depend $(OBJS)
|
|
$(AR) crv $@ $(OBJS)
|
|
|
|
environment.o: environment.c ../tools/envcrc
|
|
$(CC) $(AFLAGS) -Wa,--no-warn \
|
|
-DENV_CRC=$(shell ../tools/envcrc) \
|
|
-c -o $@ environment.c
|
|
|
|
#########################################################################
|
|
|
|
.depend: Makefile $(AOBJS:.o=.S) $(COBJS:.o=.c)
|
|
$(CC) -M $(CFLAGS) $(AOBJS:.o=.S) $(COBJS:.o=.c) > $@
|
|
|
|
sinclude .depend
|
|
|
|
#########################################################################
|