ltib
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Ltib] u-boot build failure


From: David Warman
Subject: [Ltib] u-boot build failure
Date: Mon, 19 Mar 2007 19:09:40 -0700

Hi All,

I am pleased to announce that I think I have found and fixed the problem whereby the u-boot examples fail to build, and thus causing u- boot itself to fail to build. The problem is missing dependency extensions for the two dependencies:

ltib/rpm/BUILD/u-boot-1.1.3/examples/Makefile line 128

Down near the end (line 128)  are two rules that look like:

%.srec: %
        $(OBJCOPY) -O srec $< $@ 2>/dev/null

%.bin: %
        $(OBJCOPY) -O binary $< $@ 2>/dev/null


The dependencies are incorrect: modify thusly:

%.srec: %.o
        $(OBJCOPY) -O srec $< $@ 2>/dev/null

%.bin: %.o
        $(OBJCOPY) -O binary $< $@ 2>/dev/null

Hope this helps....


David Warman
address@hidden





reply via email to

[Prev in Thread] Current Thread [Next in Thread]