mirror of https://lore.kernel.org/lkml/
 help / color / mirror / Atom feed
* Error on Make Modules [2.6.27-rc1]
@ 2008-08-01  6:06 Yudha Harimantoro T
  2008-08-01 12:13 ` Rafael J. Wysocki
  2008-08-01 22:41 ` Adrian Bunk
  0 siblings, 2 replies; 7+ messages in thread
From: Yudha Harimantoro T @ 2008-08-01  6:06 UTC (permalink / raw)
  To: linux-kernel, kernel-testers

Hi,
I make with 2.6.27-rc1 with my oldconfig.

I build the kernel and there's error on modules.
Errors :
-----------------------------------------------------------------------
root@system:/usr/src/linux# make
...................
...................
CC      net/xfrm/xfrm_ipcomp.mod.ko
LD [M] net/xfrm/xfrm_ipcomp.ko
make[1]: Nothing to be done for `__fw_modbuild'.
root@system:/usr/src/linux# make modules
  CHK     include/linux/version.h
  CHK     include/linux/utsrelease.h
  CALL    scripts/checksyscalls.sh
  Building modules, stage 2.
  MODPOST 545 modules
make[1]: Nothing to be done for `__fw_modbuild'.
root@system:/usr/src/linux#
-----------------------------------------------------------------------

Best regards,
Yudha_HT

^ permalink raw reply	[flat|nested] 7+ messages in thread

* Re: Error on Make Modules [2.6.27-rc1]
  2008-08-01  6:06 Error on Make Modules [2.6.27-rc1] Yudha Harimantoro T
@ 2008-08-01 12:13 ` Rafael J. Wysocki
  2008-08-01 22:41 ` Adrian Bunk
  1 sibling, 0 replies; 7+ messages in thread
From: Rafael J. Wysocki @ 2008-08-01 12:13 UTC (permalink / raw)
  To: Yudha Harimantoro T; +Cc: linux-kernel, kernel-testers

On Friday, 1 of August 2008, Yudha Harimantoro T wrote:
> Hi,
> I make with 2.6.27-rc1 with my oldconfig.
> 
> I build the kernel and there's error on modules.
> Errors :
> -----------------------------------------------------------------------
> root@system:/usr/src/linux# make
> ...................
> ...................
> CC      net/xfrm/xfrm_ipcomp.mod.ko
> LD [M] net/xfrm/xfrm_ipcomp.ko
> make[1]: Nothing to be done for `__fw_modbuild'.
> root@system:/usr/src/linux# make modules
>   CHK     include/linux/version.h
>   CHK     include/linux/utsrelease.h
>   CALL    scripts/checksyscalls.sh
>   Building modules, stage 2.
>   MODPOST 545 modules
> make[1]: Nothing to be done for `__fw_modbuild'.
> root@system:/usr/src/linux#
> -----------------------------------------------------------------------

Hm, there are no any errors here as far as I can see.

Thanks,
Rafael

^ permalink raw reply	[flat|nested] 7+ messages in thread

* Re: Error on Make Modules [2.6.27-rc1]
  2008-08-01  6:06 Error on Make Modules [2.6.27-rc1] Yudha Harimantoro T
  2008-08-01 12:13 ` Rafael J. Wysocki
@ 2008-08-01 22:41 ` Adrian Bunk
  2008-08-01 22:51   ` David Woodhouse
  1 sibling, 1 reply; 7+ messages in thread
From: Adrian Bunk @ 2008-08-01 22:41 UTC (permalink / raw)
  To: Yudha Harimantoro T, David Woodhouse, Sam Ravnborg
  Cc: linux-kernel, kernel-testers, Avuton Olrich

On Fri, Aug 01, 2008 at 01:06:33PM +0700, Yudha Harimantoro T wrote:
> Hi,
> I make with 2.6.27-rc1 with my oldconfig.
> 
> I build the kernel and there's error on modules.
> Errors :
> -----------------------------------------------------------------------
> root@system:/usr/src/linux# make
> ...................
> ...................
> CC      net/xfrm/xfrm_ipcomp.mod.ko
> LD [M] net/xfrm/xfrm_ipcomp.ko
> make[1]: Nothing to be done for `__fw_modbuild'.
> root@system:/usr/src/linux# make modules
>   CHK     include/linux/version.h
>   CHK     include/linux/utsrelease.h
>   CALL    scripts/checksyscalls.sh
>   Building modules, stage 2.
>   MODPOST 545 modules
> make[1]: Nothing to be done for `__fw_modbuild'.
> root@system:/usr/src/linux#
> -----------------------------------------------------------------------

Thanks for your report, everything is fine here.

@David, Sam:

This is the second report where a user thought this was an error 
message.

Kbuild does otherwise not show raw messages from GNU make.

Can you somehow hide this message?

> Best regards,
> Yudha_HT

cu
Adrian

-- 

       "Is there not promise of rain?" Ling Tan asked suddenly out
        of the darkness. There had been need of rain for many days.
       "Only a promise," Lao Er said.
                                       Pearl S. Buck - Dragon Seed


^ permalink raw reply	[flat|nested] 7+ messages in thread

* Re: Error on Make Modules [2.6.27-rc1]
  2008-08-01 22:41 ` Adrian Bunk
@ 2008-08-01 22:51   ` David Woodhouse
  2008-08-01 23:09     ` Adrian Bunk
  2008-08-02  5:58     ` Sam Ravnborg
  0 siblings, 2 replies; 7+ messages in thread
From: David Woodhouse @ 2008-08-01 22:51 UTC (permalink / raw)
  To: Adrian Bunk
  Cc: Yudha Harimantoro T, Sam Ravnborg, linux-kernel, kernel-testers,
	Avuton Olrich

On Sat, 2008-08-02 at 01:41 +0300, Adrian Bunk wrote:
> Can you somehow hide this message?

I'll leave the __fw_install one alone, so that if there's nothing to do
for 'make firmware_install' it says so rather than just doing nothing.
The other two can shut up, as requested.

Signed-off-by: David Woodhouse <David.Woodhouse@intel.com>

diff --git a/scripts/Makefile.fwinst b/scripts/Makefile.fwinst
index f63a663..6bf8e87 100644
--- a/scripts/Makefile.fwinst
+++ b/scripts/Makefile.fwinst
@@ -50,8 +50,12 @@ PHONY +=  __fw_install __fw_modinst FORCE
 .PHONY: $(PHONY)
 
 __fw_install: $(installed-fw)
+
 __fw_modinst: $(installed-mod-fw)
+	@:
+
 __fw_modbuild: $(addprefix $(obj)/,$(mod-fw))
+	@:
 
 FORCE:
 

-- 
David Woodhouse                            Open Source Technology Centre
David.Woodhouse@intel.com                              Intel Corporation


^ permalink raw reply	[flat|nested] 7+ messages in thread

* Re: Error on Make Modules [2.6.27-rc1]
  2008-08-01 22:51   ` David Woodhouse
@ 2008-08-01 23:09     ` Adrian Bunk
  2008-08-02  5:58     ` Sam Ravnborg
  1 sibling, 0 replies; 7+ messages in thread
From: Adrian Bunk @ 2008-08-01 23:09 UTC (permalink / raw)
  To: David Woodhouse
  Cc: Yudha Harimantoro T, Sam Ravnborg, linux-kernel, kernel-testers,
	Avuton Olrich

On Fri, Aug 01, 2008 at 11:51:40PM +0100, David Woodhouse wrote:
> On Sat, 2008-08-02 at 01:41 +0300, Adrian Bunk wrote:
> > Can you somehow hide this message?
> 
> I'll leave the __fw_install one alone, so that if there's nothing to do
> for 'make firmware_install' it says so rather than just doing nothing.
> The other two can shut up, as requested.
> 
> Signed-off-by: David Woodhouse <David.Woodhouse@intel.com>
> 
> diff --git a/scripts/Makefile.fwinst b/scripts/Makefile.fwinst
> index f63a663..6bf8e87 100644
> --- a/scripts/Makefile.fwinst
> +++ b/scripts/Makefile.fwinst
> @@ -50,8 +50,12 @@ PHONY +=  __fw_install __fw_modinst FORCE
>  .PHONY: $(PHONY)
>  
>  __fw_install: $(installed-fw)
> +
>  __fw_modinst: $(installed-mod-fw)
> +	@:
> +
>  __fw_modbuild: $(addprefix $(obj)/,$(mod-fw))
> +	@:
>  
>  FORCE:


Thanks.  :-)


cu
Adrian

-- 

       "Is there not promise of rain?" Ling Tan asked suddenly out
        of the darkness. There had been need of rain for many days.
       "Only a promise," Lao Er said.
                                       Pearl S. Buck - Dragon Seed


^ permalink raw reply	[flat|nested] 7+ messages in thread

* Re: Error on Make Modules [2.6.27-rc1]
  2008-08-01 22:51   ` David Woodhouse
  2008-08-01 23:09     ` Adrian Bunk
@ 2008-08-02  5:58     ` Sam Ravnborg
  2008-08-02 13:06       ` David Woodhouse
  1 sibling, 1 reply; 7+ messages in thread
From: Sam Ravnborg @ 2008-08-02  5:58 UTC (permalink / raw)
  To: David Woodhouse
  Cc: Adrian Bunk, Yudha Harimantoro T, linux-kernel, kernel-testers,
	Avuton Olrich

Hi David.

On Fri, Aug 01, 2008 at 11:51:40PM +0100, David Woodhouse wrote:
> On Sat, 2008-08-02 at 01:41 +0300, Adrian Bunk wrote:
> > Can you somehow hide this message?
> 
> I'll leave the __fw_install one alone, so that if there's nothing to do
> for 'make firmware_install' it says so rather than just doing nothing.
> The other two can shut up, as requested.

I assume you push this one to Linus - right?

	Sam

^ permalink raw reply	[flat|nested] 7+ messages in thread

* Re: Error on Make Modules [2.6.27-rc1]
  2008-08-02  5:58     ` Sam Ravnborg
@ 2008-08-02 13:06       ` David Woodhouse
  0 siblings, 0 replies; 7+ messages in thread
From: David Woodhouse @ 2008-08-02 13:06 UTC (permalink / raw)
  To: Sam Ravnborg
  Cc: Adrian Bunk, Yudha Harimantoro T, linux-kernel, kernel-testers,
	Avuton Olrich

On Sat, 2008-08-02 at 07:58 +0200, Sam Ravnborg wrote:
> Hi David.
> 
> On Fri, Aug 01, 2008 at 11:51:40PM +0100, David Woodhouse wrote:
> > On Sat, 2008-08-02 at 01:41 +0300, Adrian Bunk wrote:
> > > Can you somehow hide this message?
> > 
> > I'll leave the __fw_install one alone, so that if there's nothing to do
> > for 'make firmware_install' it says so rather than just doing nothing.
> > The other two can shut up, as requested.
> 
> I assume you push this one to Linus - right?

I have done.

-- 
dwmw2


^ permalink raw reply	[flat|nested] 7+ messages in thread

end of thread, other threads:[~2008-08-02 13:06 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2008-08-01  6:06 Error on Make Modules [2.6.27-rc1] Yudha Harimantoro T
2008-08-01 12:13 ` Rafael J. Wysocki
2008-08-01 22:41 ` Adrian Bunk
2008-08-01 22:51   ` David Woodhouse
2008-08-01 23:09     ` Adrian Bunk
2008-08-02  5:58     ` Sam Ravnborg
2008-08-02 13:06       ` David Woodhouse

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox

all inboxes | Powered by JetHome®