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
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
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
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 <[email protected]>
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
[email protected] Intel Corporation
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 <[email protected]>
>
> 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
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
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