From b2184c314de0af9788ce505b413030d2114cfa4a Mon Sep 17 00:00:00 2001 From: wdenk Date: Tue, 19 Nov 2002 23:01:07 +0000 Subject: =?UTF-8?q?*=20Patch=20by=20Daniel=20Engstr=F6m,=2018=20Nov=202002?= =?UTF-8?q?:=20=20=20Fixes=20for=20x86=20port=20(mostly=20strings=20issues?= =?UTF-8?q?)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * Patch by Ken Chou, 18 Nov 2002: Fix for natsemi NIC cards (DP83815) * Patch by Pierre Aubert, 19 Nov 2002: fix a bug for the MII configuration, and some warnings --- Makefile | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'Makefile') diff --git a/Makefile b/Makefile index ec21400..6c98c84 100644 --- a/Makefile +++ b/Makefile @@ -142,7 +142,9 @@ u-boot.dis: u-boot $(OBJDUMP) -d $< > $@ u-boot: depend subdirs $(OBJS) $(LIBS) $(LDSCRIPT) - $(LD) $(LDFLAGS) $(OBJS) $(LIBS) $(LIBS) -Map u-boot.map -o u-boot + $(LD) $(LDFLAGS) $(OBJS) \ + --start-group $(LIBS) --end-group \ + -Map u-boot.map -o u-boot subdirs: @for dir in $(SUBDIRS) ; do $(MAKE) -C $$dir || exit 1 ; done -- cgit v1.1