upstream u-boot with additional patches for our devices/boards:
https://lists.denx.de/pipermail/u-boot/2017-March/282789.html (AXP crashes) ;
Gbit ethernet patch for some LIME2 revisions ;
with SPI flash support
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
324 B
17 lines
324 B
20 years ago
|
include $(TOPDIR)/config.mk
|
||
|
|
||
|
LIB := libnand.a
|
||
|
|
||
|
OBJS := nand.o nand_base.o nand_ids.o nand_ecc.o nand_bbt.o
|
||
|
all: $(LIB)
|
||
|
|
||
|
$(LIB): $(OBJS)
|
||
|
$(AR) crv $@ $(OBJS)
|
||
|
|
||
|
#########################################################################
|
||
|
|
||
|
.depend: Makefile $(OBJS:.o=.c)
|
||
|
$(CC) -M $(CFLAGS) $(OBJS:.o=.c) > $@
|
||
|
|
||
|
sinclude .depend
|