Re: [PATCH] modpost: Fix secondary errors seen if a single module build fails

2013-09-25 Thread Michal Marek
On 18.9.2013 16:05, Guenter Roeck wrote: > To follow up on this - are you at the Linux Plumbers conference ? > If yes maybe we can meet briefly and discuss how to proceed. > I'd volunteer to create a patch to add the above functionality if > people think it is valuable, but I would like to keep it

Re: [PATCH] modpost: Fix secondary errors seen if a single module build fails

2013-09-18 Thread Guenter Roeck
On Tue, Sep 17, 2013 at 02:34:58PM +0200, Michal Marek wrote: > Dne 15.9.2013 06:39, Guenter Roeck napsal(a): > > Commit ea4054a23 (modpost: handle huge numbers of modules) added > > support for building a large number of modules. > > > > Unfortunately, the commit changed the semantics of the make

Re: [PATCH] modpost: Fix secondary errors seen if a single module build fails

2013-09-17 Thread Guenter Roeck
On 09/17/2013 05:34 AM, Michal Marek wrote: Dne 15.9.2013 06:39, Guenter Roeck napsal(a): Commit ea4054a23 (modpost: handle huge numbers of modules) added support for building a large number of modules. Unfortunately, the commit changed the semantics of the makefile: Instead of passing only exi

Re: [PATCH] modpost: Fix secondary errors seen if a single module build fails

2013-09-17 Thread Michal Marek
Dne 15.9.2013 06:39, Guenter Roeck napsal(a): > Commit ea4054a23 (modpost: handle huge numbers of modules) added > support for building a large number of modules. > > Unfortunately, the commit changed the semantics of the makefile: Instead of > passing only existing object files to modpost, make n

Re: [PATCH] modpost: Fix secondary errors seen if a single module build fails

2013-09-16 Thread Guenter Roeck
On Sun, Sep 15, 2013 at 10:15:47AM +0200, Geert Uytterhoeven wrote: > On Sun, Sep 15, 2013 at 6:39 AM, Guenter Roeck wrote: > > - cmd_modpost = $(MODLISTCMD) | sed 's/\.ko$/.o/' | $(modpost) -s -T - > > + cmd_modpost = $(MODLISTCMD) | sed 's/\.ko$/.o/' | \ > > + while read a; do [

Re: [PATCH] modpost: Fix secondary errors seen if a single module build fails

2013-09-15 Thread Guenter Roeck
On 09/15/2013 01:15 AM, Geert Uytterhoeven wrote: On Sun, Sep 15, 2013 at 6:39 AM, Guenter Roeck wrote: - cmd_modpost = $(MODLISTCMD) | sed 's/\.ko$/.o/' | $(modpost) -s -T - + cmd_modpost = $(MODLISTCMD) | sed 's/\.ko$/.o/' | \ + while read a; do [ -f $a ] && echo $a; done | $(

Re: [PATCH] modpost: Fix secondary errors seen if a single module build fails

2013-09-15 Thread Geert Uytterhoeven
On Sun, Sep 15, 2013 at 6:39 AM, Guenter Roeck wrote: > - cmd_modpost = $(MODLISTCMD) | sed 's/\.ko$/.o/' | $(modpost) -s -T - > + cmd_modpost = $(MODLISTCMD) | sed 's/\.ko$/.o/' | \ > + while read a; do [ -f $a ] && echo $a; done | $(modpost) -s -T - I'm wondering whether this ca

[PATCH] modpost: Fix secondary errors seen if a single module build fails

2013-09-14 Thread Guenter Roeck
Commit ea4054a23 (modpost: handle huge numbers of modules) added support for building a large number of modules. Unfortunately, the commit changed the semantics of the makefile: Instead of passing only existing object files to modpost, make now passes all expected object files. If make was started