Your ROOT_URL in app.ini is https://src.whiteboxsystems.nl/ but you are visiting http://src.whiteboxsystems.nl/Whitebox/u-boot/commit/2ac4785c2fc5289780f63a00d9b9a75dd658b15e You should set ROOT_URL correctly, otherwise the web may not work correctly.

Fix make dependencies for at91rm9200 and ks8695 cpus

Patch by Steven Scholz, 23 Aug 2005
master
Wolfgang Denk 20 years ago
parent d534f5cc38
commit 2ac4785c2f
  1. 3
      CHANGELOG
  2. 4
      cpu/arm920t/at91rm9200/Makefile
  3. 4
      cpu/arm920t/ks8695/Makefile

@ -2,6 +2,9 @@
Changes for U-Boot 1.1.4:
======================================================================
* Fix make dependencies for at91rm9200 and ks8695 cpus
Patch by Steven Scholz, 23 Aug 2005
* Add JFFS2 support for TQM5200 board
* Add esd cpci5200 and pf5200 boards

@ -35,8 +35,8 @@ $(LIB): $(OBJS) $(SOBJS)
#########################################################################
.depend: Makefile $(OBJS:.o=.c)
$(CC) -M $(CFLAGS) $(OBJS:.o=.c) > $@
.depend: Makefile $(SOBJS:.o=.S) $(OBJS:.o=.c)
$(CC) -M $(CFLAGS) $(SOBJS:.o=.S) $(OBJS:.o=.c) > $@
sinclude .depend

@ -35,8 +35,8 @@ $(LIB): $(OBJS) $(SOBJS)
#########################################################################
.depend: Makefile $(OBJS:.o=.c)
$(CC) -M $(CFLAGS) $(OBJS:.o=.c) > $@
.depend: Makefile $(SOBJS:.o=.S) $(OBJS:.o=.c)
$(CC) -M $(CFLAGS) $(SOBJS:.o=.S) $(OBJS:.o=.c) > $@
sinclude .depend

Loading…
Cancel
Save