linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* patch to 2.6.27 fix build rpm
@ 2008-10-15 14:04 Евгений Маначкин
  2008-10-15 15:35 ` Cyrill Gorcunov
  0 siblings, 1 reply; 15+ messages in thread
From: Евгений Маначкин @ 2008-10-15 14:04 UTC (permalink / raw)
  To: linux-kernel

Latest working kernel version:2.6.26.6
Distribution: any
Hardware Environment: any
Software Environment: any
Problem Description: Build error from make rpm. Many unpacked files (*.fw).

Steps to reproduce: 

Add in .config:
# CONFIG_PREVENT_FIRMWARE_BUILD is not set
CONFIG_FW_LOADER=y
CONFIG_FIRMWARE_IN_KERNEL=y
CONFIG_EXTRA_FIRMWARE=""

and say make rpm to build.

This patch for file linux-2.6.27/scripts/package/mkspec is fix this problem:


--- mkspec.old  2008-10-11 00:00:38.000000000 +0700
+++ mkspec      2008-10-11 00:39:43.000000000 +0700
@@ -64,8 +64,10 @@
 echo "%install"
 echo "%ifarch ia64"
 echo 'mkdir -p $RPM_BUILD_ROOT/boot/efi $RPM_BUILD_ROOT/lib/modules'
+echo 'mkdir -p $RPM_BUILD_ROOT/boot/efi $RPM_BUILD_ROOT/lib/firmware'
 echo "%else"
 echo 'mkdir -p $RPM_BUILD_ROOT/boot $RPM_BUILD_ROOT/lib/modules'
+echo 'mkdir -p $RPM_BUILD_ROOT/boot $RPM_BUILD_ROOT/lib/firmware'
 echo "%endif"

 echo 'INSTALL_MOD_PATH=$RPM_BUILD_ROOT make %{_smp_mflags} modules_install'
@@ -92,5 +94,6 @@
 echo '%defattr (-, root, root)'
 echo "%dir /lib/modules"
 echo "/lib/modules/$KERNELRELEASE"
+echo "/lib/firmware"
 echo "/boot/*"
 echo ""

С уважением, Маначкин Е.Р.
________________________________________
|Комплексные решения на базе Linux.
|Opensource wireless routers firmware
|www: http://wive-ng.sf.net
|mail-to: sfstudio@mail.ru
|ICQ: 485758428
|JID: sfstudio-omsk@jabber.ru



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

* Re: patch to 2.6.27 fix build rpm
  2008-10-15 14:04 patch to 2.6.27 fix build rpm Евгений Маначкин
@ 2008-10-15 15:35 ` Cyrill Gorcunov
  2008-10-15 16:54   ` Евгений Маначкин
  0 siblings, 1 reply; 15+ messages in thread
From: Cyrill Gorcunov @ 2008-10-15 15:35 UTC (permalink / raw)
  To: Евгений
	Маначкин
  Cc: linux-kernel

[Евгений Маначкин - Wed, Oct 15, 2008 at 08:04:02PM +0600]
| Latest working kernel version:2.6.26.6
| Distribution: any
| Hardware Environment: any
| Software Environment: any
| Problem Description: Build error from make rpm. Many unpacked files (*.fw).
| 
| Steps to reproduce: 
| 
| Add in .config:
| # CONFIG_PREVENT_FIRMWARE_BUILD is not set
| CONFIG_FW_LOADER=y
| CONFIG_FIRMWARE_IN_KERNEL=y
| CONFIG_EXTRA_FIRMWARE=""
| 
| and say make rpm to build.
| 
| This patch for file linux-2.6.27/scripts/package/mkspec is fix this problem:
| 
| 
| --- mkspec.old  2008-10-11 00:00:38.000000000 +0700
| +++ mkspec      2008-10-11 00:39:43.000000000 +0700
| @@ -64,8 +64,10 @@
|  echo "%install"
|  echo "%ifarch ia64"
|  echo 'mkdir -p $RPM_BUILD_ROOT/boot/efi $RPM_BUILD_ROOT/lib/modules'
| +echo 'mkdir -p $RPM_BUILD_ROOT/boot/efi $RPM_BUILD_ROOT/lib/firmware'
|  echo "%else"
|  echo 'mkdir -p $RPM_BUILD_ROOT/boot $RPM_BUILD_ROOT/lib/modules'
| +echo 'mkdir -p $RPM_BUILD_ROOT/boot $RPM_BUILD_ROOT/lib/firmware'
|  echo "%endif"
| 
|  echo 'INSTALL_MOD_PATH=$RPM_BUILD_ROOT make %{_smp_mflags} modules_install'
| @@ -92,5 +94,6 @@
|  echo '%defattr (-, root, root)'
|  echo "%dir /lib/modules"
|  echo "/lib/modules/$KERNELRELEASE"
| +echo "/lib/firmware"
|  echo "/boot/*"
|  echo ""
| 
| С уважением, Маначкин Е.Р.
| ________________________________________
| |Комплексные решения на базе Linux.
| |Opensource wireless routers firmware
| |www: http://wive-ng.sf.net
| |mail-to: sfstudio@mail.ru
| |ICQ: 485758428
| |JID: sfstudio-omsk@jabber.ru
| 
| 

Hi Евгений,

please use patch form described in Documentation/SubmittingPatches
(kernel source tree). Thanks.

		- Cyrill -

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

* Re: Re: patch to 2.6.27 fix build rpm
  2008-10-15 15:35 ` Cyrill Gorcunov
@ 2008-10-15 16:54   ` Евгений Маначкин
  2008-10-15 17:24     ` Cyrill Gorcunov
  2008-10-15 17:36     ` Alan Cox
  0 siblings, 2 replies; 15+ messages in thread
From: Евгений Маначкин @ 2008-10-15 16:54 UTC (permalink / raw)
  To: linux-kernel, gorcunov

This is OK ?

--- linux-2.6.27/scripts/package/mkspec.orig    2008-10-11 00:00:38.000000000 +0700
+++ linux-2.6.27/scripts/package/mkspec 2008-10-11 00:39:43.000000000 +0700
@@ -64,8 +64,10 @@ fi
 echo "%install"
 echo "%ifarch ia64"
 echo 'mkdir -p $RPM_BUILD_ROOT/boot/efi $RPM_BUILD_ROOT/lib/modules'
+echo 'mkdir -p $RPM_BUILD_ROOT/boot/efi $RPM_BUILD_ROOT/lib/firmware'
 echo "%else"
 echo 'mkdir -p $RPM_BUILD_ROOT/boot $RPM_BUILD_ROOT/lib/modules'
+echo 'mkdir -p $RPM_BUILD_ROOT/boot $RPM_BUILD_ROOT/lib/firmware'
 echo "%endif"

 echo 'INSTALL_MOD_PATH=$RPM_BUILD_ROOT make %{_smp_mflags} modules_install'
@@ -92,5 +94,6 @@ echo "%files"
 echo '%defattr (-, root, root)'
 echo "%dir /lib/modules"
 echo "/lib/modules/$KERNELRELEASE"
+echo "/lib/firmware"
 echo "/boot/*"
 echo ""


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

* Re: Re: patch to 2.6.27 fix build rpm
  2008-10-15 16:54   ` Евгений Маначкин
@ 2008-10-15 17:24     ` Cyrill Gorcunov
  2008-10-15 17:37       ` Евгений Маначкин
  2008-10-15 17:36     ` Alan Cox
  1 sibling, 1 reply; 15+ messages in thread
From: Cyrill Gorcunov @ 2008-10-15 17:24 UTC (permalink / raw)
  To: Евгений
	Маначкин
  Cc: linux-kernel

[Евгений Маначкин - Wed, Oct 15, 2008 at 11:54:34PM +0700]
| This is OK ?
| 
| --- linux-2.6.27/scripts/package/mkspec.orig    2008-10-11 00:00:38.000000000 +0700
| +++ linux-2.6.27/scripts/package/mkspec 2008-10-11 00:39:43.000000000 +0700
| @@ -64,8 +64,10 @@ fi
|  echo "%install"
|  echo "%ifarch ia64"
|  echo 'mkdir -p $RPM_BUILD_ROOT/boot/efi $RPM_BUILD_ROOT/lib/modules'
| +echo 'mkdir -p $RPM_BUILD_ROOT/boot/efi $RPM_BUILD_ROOT/lib/firmware'
|  echo "%else"
|  echo 'mkdir -p $RPM_BUILD_ROOT/boot $RPM_BUILD_ROOT/lib/modules'
| +echo 'mkdir -p $RPM_BUILD_ROOT/boot $RPM_BUILD_ROOT/lib/firmware'
|  echo "%endif"
| 
|  echo 'INSTALL_MOD_PATH=$RPM_BUILD_ROOT make %{_smp_mflags} modules_install'
| @@ -92,5 +94,6 @@ echo "%files"
|  echo '%defattr (-, root, root)'
|  echo "%dir /lib/modules"
|  echo "/lib/modules/$KERNELRELEASE"
| +echo "/lib/firmware"
|  echo "/boot/*"
|  echo ""
| 

Evgeniy, it should be something like that

---
From: Evgeniy Manachkin <sfstudio@mail.ru>
Subject: [PATCH] mkspec - fix build rpm

Patch description goes here

Signed-off-by: Evgeniy Manachkin <sfstudio@mail.ru>
---
Patch body goes here

I didn't check the patch just show you the form of patch submission.
For example -- take a look on

	http://lkml.org/lkml/2008/10/15/2
or
	http://lkml.org/lkml/2008/10/15/20

Actually SubmittingPatches has a quite good description how to
make it right :)

		- Cyrill -

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

* Re: patch to 2.6.27 fix build rpm
  2008-10-15 16:54   ` Евгений Маначкин
  2008-10-15 17:24     ` Cyrill Gorcunov
@ 2008-10-15 17:36     ` Alan Cox
  1 sibling, 0 replies; 15+ messages in thread
From: Alan Cox @ 2008-10-15 17:36 UTC (permalink / raw)
  To: Евгений
	Маначкин
  Cc: linux-kernel, gorcunov

On Wed, 15 Oct 2008 23:54:34 +0700
Евгений Маначкин  <sfstudio@mail.ru> wrote:

> This is OK ?

Looks good but needs a signed-off-by line

Alan

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

* Re: Re: Re: patch to 2.6.27 fix build rpm
  2008-10-15 17:24     ` Cyrill Gorcunov
@ 2008-10-15 17:37       ` Евгений Маначкин
  2008-10-15 17:46         ` [PATCH] " Alan Cox
                           ` (3 more replies)
  0 siblings, 4 replies; 15+ messages in thread
From: Евгений Маначкин @ 2008-10-15 17:37 UTC (permalink / raw)
  To: gorcunov, linux-kernel

From: Evgeniy Manachkin <sfstudio@mail.ru>
Subject: [PATCH] mkspec - fix build rpm

This is patch to fix incorrect mkspec script to make rpm correctly at 2.6.27 vanilla kernel. This is regression in 2.6.27. 2.6.26 make rpm work good.
In 2.6.27 'make rpm' say error from rpmbuild "Many unpacked files (*.fw)." 
This is patch fix it this error.

Sorry my English.

Signed-off-by: Evgeniy Manachkin <sfstudio@mail.ru>

 --- linux-2.6.27/scripts/package/mkspec.orig    2008-10-11 00:00:38.000000000 +0700
 +++ linux-2.6.27/scripts/package/mkspec 2008-10-11 00:39:43.000000000 +0700
 @@ -64,8 +64,10 @@ fi
  echo "%install"
  echo "%ifarch ia64"
  echo 'mkdir -p $RPM_BUILD_ROOT/boot/efi $RPM_BUILD_ROOT/lib/modules'
 +echo 'mkdir -p $RPM_BUILD_ROOT/boot/efi $RPM_BUILD_ROOT/lib/firmware'
  echo "%else"
  echo 'mkdir -p $RPM_BUILD_ROOT/boot $RPM_BUILD_ROOT/lib/modules'
 +echo 'mkdir -p $RPM_BUILD_ROOT/boot $RPM_BUILD_ROOT/lib/firmware'
  echo "%endif"
 
  echo 'INSTALL_MOD_PATH=$RPM_BUILD_ROOT make %{_smp_mflags} modules_install'
 @@ -92,5 +94,6 @@ echo "%files"
  echo '%defattr (-, root, root)'
  echo "%dir /lib/modules"
  echo "/lib/modules/$KERNELRELEASE"
 +echo "/lib/firmware"
  echo "/boot/*"
  echo ""

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

* Re: [PATCH] patch to 2.6.27 fix build rpm
  2008-10-15 17:37       ` Евгений Маначкин
@ 2008-10-15 17:46         ` Alan Cox
  2008-10-23 20:46           ` [stable] " Greg KH
  2008-10-15 17:47         ` Re: " Cyrill Gorcunov
                           ` (2 subsequent siblings)
  3 siblings, 1 reply; 15+ messages in thread
From: Alan Cox @ 2008-10-15 17:46 UTC (permalink / raw)
  To: Евгений
	Маначкин
  Cc: gorcunov, linux-kernel, torvalds, stable

On Wed, 15 Oct 2008 23:37:26 +0600
Евгений Маначкин  <sfstudio@mail.ru> wrote:

> From: Evgeniy Manachkin <sfstudio@mail.ru>
> Subject: [PATCH] mkspec - fix build rpm
> 
> This is patch to fix incorrect mkspec script to make rpm correctly at 2.6.27 vanilla kernel. This is regression in 2.6.27. 2.6.26 make rpm work good.
> In 2.6.27 'make rpm' say error from rpmbuild "Many unpacked files (*.fw)." 
> This is patch fix it this error.
> 
> Sorry my English.
> 
> Signed-off-by: Evgeniy Manachkin <sfstudio@mail.ru>

Acked-by: Alan Cox <alan@redhat.com>

This should IMHO go straight into both upstream and 2.6.27.x as it is a
regression fix.

Alan

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

* Re: Re: Re: patch to 2.6.27 fix build rpm
  2008-10-15 17:37       ` Евгений Маначкин
  2008-10-15 17:46         ` [PATCH] " Alan Cox
@ 2008-10-15 17:47         ` Cyrill Gorcunov
  2008-10-16  1:17           ` Ian Hilt
  2008-10-15 18:53         ` Frans Pop
  2008-10-15 18:56         ` H. Peter Anvin
  3 siblings, 1 reply; 15+ messages in thread
From: Cyrill Gorcunov @ 2008-10-15 17:47 UTC (permalink / raw)
  To: Евгений
	Маначкин
  Cc: linux-kernel

[Евгений Маначкин - Wed, Oct 15, 2008 at 11:37:26PM +0600]
| From: Evgeniy Manachkin <sfstudio@mail.ru>
| Subject: [PATCH] mkspec - fix build rpm
| 
| This is patch to fix incorrect mkspec script to make rpm correctly at 2.6.27 vanilla kernel. This is regression in 2.6.27. 2.6.26 make rpm work good.
| In 2.6.27 'make rpm' say error from rpmbuild "Many unpacked files (*.fw)." 
| This is patch fix it this error.
| 
| Sorry my English.
| 
| Signed-off-by: Evgeniy Manachkin <sfstudio@mail.ru>
| 
|  --- linux-2.6.27/scripts/package/mkspec.orig    2008-10-11 00:00:38.000000000 +0700
|  +++ linux-2.6.27/scripts/package/mkspec 2008-10-11 00:39:43.000000000 +0700
|  @@ -64,8 +64,10 @@ fi
|   echo "%install"
|   echo "%ifarch ia64"
|   echo 'mkdir -p $RPM_BUILD_ROOT/boot/efi $RPM_BUILD_ROOT/lib/modules'
|  +echo 'mkdir -p $RPM_BUILD_ROOT/boot/efi $RPM_BUILD_ROOT/lib/firmware'
|   echo "%else"
|   echo 'mkdir -p $RPM_BUILD_ROOT/boot $RPM_BUILD_ROOT/lib/modules'
|  +echo 'mkdir -p $RPM_BUILD_ROOT/boot $RPM_BUILD_ROOT/lib/firmware'
|   echo "%endif"
|  
|   echo 'INSTALL_MOD_PATH=$RPM_BUILD_ROOT make %{_smp_mflags} modules_install'
|  @@ -92,5 +94,6 @@ echo "%files"
|   echo '%defattr (-, root, root)'
|   echo "%dir /lib/modules"
|   echo "/lib/modules/$KERNELRELEASE"
|  +echo "/lib/firmware"
|   echo "/boot/*"
|   echo ""
| 

Much better thanks! Lets wait for LKML feedback.

P.S.
As I see you use Mail.ru web interface for patch submission
unfortunately it's not goot -- better use Thunderbird or something
like that since mPOP does mangle tabulators. There was some doc about
how to configure mail clients but I don't remember where is it (maybe
somewhere inside Documentations :-)

		- Cyrill -

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

* Re: Re: Re: patch to 2.6.27 fix build rpm
  2008-10-15 17:37       ` Евгений Маначкин
  2008-10-15 17:46         ` [PATCH] " Alan Cox
  2008-10-15 17:47         ` Re: " Cyrill Gorcunov
@ 2008-10-15 18:53         ` Frans Pop
  2008-10-15 19:08           ` Евгений Маначкин
  2008-10-15 18:56         ` H. Peter Anvin
  3 siblings, 1 reply; 15+ messages in thread
From: Frans Pop @ 2008-10-15 18:53 UTC (permalink / raw)
  To: sfstudio; +Cc: gorcunov, linux-kernel, Alan Cox

Евгений Маначкин wrote:
>   echo 'mkdir -p $RPM_BUILD_ROOT/boot/efi $RPM_BUILD_ROOT/lib/modules'
>  +echo 'mkdir -p $RPM_BUILD_ROOT/boot/efi $RPM_BUILD_ROOT/lib/firmware'
>   echo "%else"
>   echo 'mkdir -p $RPM_BUILD_ROOT/boot $RPM_BUILD_ROOT/lib/modules'
>  +echo 'mkdir -p $RPM_BUILD_ROOT/boot $RPM_BUILD_ROOT/lib/firmware'

Is it really necessary to make the first directory twice in both cases?

I would suggest changing the patch to simply:
 echo 'mkdir -p $RPM_BUILD_ROOT/boot/efi $RPM_BUILD_ROOT/lib/modules'
+echo 'mkdir -p $RPM_BUILD_ROOT/lib/firmware'
 echo "%else"
 echo 'mkdir -p $RPM_BUILD_ROOT/boot $RPM_BUILD_ROOT/lib/modules'
+echo 'mkdir -p $RPM_BUILD_ROOT/lib/firmware'

Or even adding the creation of the firware dir to the original mkdirs.

Cheers,
FJP

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

* Re: patch to 2.6.27 fix build rpm
  2008-10-15 17:37       ` Евгений Маначкин
                           ` (2 preceding siblings ...)
  2008-10-15 18:53         ` Frans Pop
@ 2008-10-15 18:56         ` H. Peter Anvin
  3 siblings, 0 replies; 15+ messages in thread
From: H. Peter Anvin @ 2008-10-15 18:56 UTC (permalink / raw)
  To: Евгений
	Маначкин
  Cc: gorcunov, linux-kernel

Евгений Маначкин wrote:
> 
>  --- linux-2.6.27/scripts/package/mkspec.orig    2008-10-11 00:00:38.000000000 +0700
>  +++ linux-2.6.27/scripts/package/mkspec 2008-10-11 00:39:43.000000000 +0700
>  @@ -64,8 +64,10 @@ fi
>   echo "%install"
>   echo "%ifarch ia64"
>   echo 'mkdir -p $RPM_BUILD_ROOT/boot/efi $RPM_BUILD_ROOT/lib/modules'
>  +echo 'mkdir -p $RPM_BUILD_ROOT/boot/efi $RPM_BUILD_ROOT/lib/firmware'
>   echo "%else"
>   echo 'mkdir -p $RPM_BUILD_ROOT/boot $RPM_BUILD_ROOT/lib/modules'
>  +echo 'mkdir -p $RPM_BUILD_ROOT/boot $RPM_BUILD_ROOT/lib/firmware'
>   echo "%endif"
>  

Wouldn't:

echo 'mkdir -p $RPM_BUILD_ROOT/boot'
echo 'mkdir -p $RPM_BUILD_ROOT/lib/modules'
echo 'mkdir -p $RPM_BUILD_ROOT/lib/firmware'
echo "%ifarch ia64"
echo 'mkdir -p $RPM_BUILD_ROOT/boot/efi'
echo '%endif'

... be better?

	-hpa

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

* Re: Re: Re: Re: patch to 2.6.27 fix build rpm
  2008-10-15 18:53         ` Frans Pop
@ 2008-10-15 19:08           ` Евгений Маначкин
  0 siblings, 0 replies; 15+ messages in thread
From: Евгений Маначкин @ 2008-10-15 19:08 UTC (permalink / raw)
  To: elendil, linux-kernel

Ooops... You say true. Fix It.

--- linux-2.6.27/scripts/package/mkspec.orig    2008-10-11 00:00:38.000000000 +0700
+++ linux-2.6.27/scripts/package/mkspec 2008-10-16 02:02:19.000000000 +0700
@@ -63,9 +63,9 @@ fi

 echo "%install"
 echo "%ifarch ia64"
-echo 'mkdir -p $RPM_BUILD_ROOT/boot/efi $RPM_BUILD_ROOT/lib/modules'
+echo 'mkdir -p $RPM_BUILD_ROOT/boot/efi $RPM_BUILD_ROOT/lib/modules $RPM_BUILD_ROOT/lib/firmware'
 echo "%else"
-echo 'mkdir -p $RPM_BUILD_ROOT/boot $RPM_BUILD_ROOT/lib/modules'
+echo 'mkdir -p $RPM_BUILD_ROOT/boot $RPM_BUILD_ROOT/lib/modules $RPM_BUILD_ROOT/lib/firmware'
 echo "%endif"

 echo 'INSTALL_MOD_PATH=$RPM_BUILD_ROOT make %{_smp_mflags} modules_install'
@@ -92,5 +92,6 @@ echo "%files"
 echo '%defattr (-, root, root)'
 echo "%dir /lib/modules"
 echo "/lib/modules/$KERNELRELEASE"
+echo "/lib/firmware"
 echo "/boot/*"
 echo ""

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

* Re: Re: Re: patch to 2.6.27 fix build rpm
  2008-10-15 17:47         ` Re: " Cyrill Gorcunov
@ 2008-10-16  1:17           ` Ian Hilt
  0 siblings, 0 replies; 15+ messages in thread
From: Ian Hilt @ 2008-10-16  1:17 UTC (permalink / raw)
  To: Cyrill Gorcunov
  Cc: Евгений
	Маначкин,
	linux-kernel

On Wed, 15 Oct 2008, Cyrill Gorcunov wrote:
> P.S.
> As I see you use Mail.ru web interface for patch submission
> unfortunately it's not goot -- better use Thunderbird or something
> like that since mPOP does mangle tabulators. There was some doc about
> how to configure mail clients but I don't remember where is it (maybe
> somewhere inside Documentations :-)
> 
> 		- Cyrill -

Documentation/email-clients.txt

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

* Re: [stable] [PATCH] patch to 2.6.27 fix build rpm
  2008-10-15 17:46         ` [PATCH] " Alan Cox
@ 2008-10-23 20:46           ` Greg KH
  2008-10-23 23:50             ` Randy Dunlap
  0 siblings, 1 reply; 15+ messages in thread
From: Greg KH @ 2008-10-23 20:46 UTC (permalink / raw)
  To: Alan Cox
  Cc: Евгений
	Маначкин,
	gorcunov, torvalds, linux-kernel, stable

On Wed, Oct 15, 2008 at 06:46:52PM +0100, Alan Cox wrote:
> On Wed, 15 Oct 2008 23:37:26 +0600
> Евгений Маначкин  <sfstudio@mail.ru> wrote:
> 
> > From: Evgeniy Manachkin <sfstudio@mail.ru>
> > Subject: [PATCH] mkspec - fix build rpm
> > 
> > This is patch to fix incorrect mkspec script to make rpm correctly at 2.6.27 vanilla kernel. This is regression in 2.6.27. 2.6.26 make rpm work good.
> > In 2.6.27 'make rpm' say error from rpmbuild "Many unpacked files (*.fw)." 
> > This is patch fix it this error.
> > 
> > Sorry my English.
> > 
> > Signed-off-by: Evgeniy Manachkin <sfstudio@mail.ru>
> 
> Acked-by: Alan Cox <alan@redhat.com>
> 
> This should IMHO go straight into both upstream and 2.6.27.x as it is a
> regression fix.

This doesn't seem to have gone into Linus's tree yet, can someone please
resend it?

Also be sure to cc: stable@kernel.org on this patch as well.

thanks,

greg k-h

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

* Re: [stable] [PATCH] patch to 2.6.27 fix build rpm
  2008-10-23 20:46           ` [stable] " Greg KH
@ 2008-10-23 23:50             ` Randy Dunlap
  2008-10-24  6:04               ` Sam Ravnborg
  0 siblings, 1 reply; 15+ messages in thread
From: Randy Dunlap @ 2008-10-23 23:50 UTC (permalink / raw)
  To: Greg KH
  Cc: Alan Cox,
	Евгений
	Маначкин,
	gorcunov, torvalds, linux-kernel, stable

On Thu, 23 Oct 2008 13:46:28 -0700 Greg KH wrote:

> On Wed, Oct 15, 2008 at 06:46:52PM +0100, Alan Cox wrote:
> > On Wed, 15 Oct 2008 23:37:26 +0600
> > Евгений Маначкин  <sfstudio@mail.ru> wrote:
> > 
> > > From: Evgeniy Manachkin <sfstudio@mail.ru>
> > > Subject: [PATCH] mkspec - fix build rpm
> > > 
> > > This is patch to fix incorrect mkspec script to make rpm correctly at 2.6.27 vanilla kernel. This is regression in 2.6.27. 2.6.26 make rpm work good.
> > > In 2.6.27 'make rpm' say error from rpmbuild "Many unpacked files (*.fw)." 
> > > This is patch fix it this error.
> > > 
> > > Sorry my English.
> > > 
> > > Signed-off-by: Evgeniy Manachkin <sfstudio@mail.ru>
> > 
> > Acked-by: Alan Cox <alan@redhat.com>
> > 
> > This should IMHO go straight into both upstream and 2.6.27.x as it is a
> > regression fix.
> 
> This doesn't seem to have gone into Linus's tree yet, can someone please
> resend it?
> 
> Also be sure to cc: stable@kernel.org on this patch as well.

We are missing a Sam Ravnborg to merge it...

---
~Randy

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

* Re: [stable] [PATCH] patch to 2.6.27 fix build rpm
  2008-10-23 23:50             ` Randy Dunlap
@ 2008-10-24  6:04               ` Sam Ravnborg
  0 siblings, 0 replies; 15+ messages in thread
From: Sam Ravnborg @ 2008-10-24  6:04 UTC (permalink / raw)
  To: Randy Dunlap
  Cc: Greg KH, Alan Cox,
	Евгений
	Маначкин,
	gorcunov, torvalds, linux-kernel, stable

On Thu, Oct 23, 2008 at 04:50:17PM -0700, Randy Dunlap wrote:
> On Thu, 23 Oct 2008 13:46:28 -0700 Greg KH wrote:
> 
> > On Wed, Oct 15, 2008 at 06:46:52PM +0100, Alan Cox wrote:
> > > On Wed, 15 Oct 2008 23:37:26 +0600
> > > Евгений Маначкин  <sfstudio@mail.ru> wrote:
> > > 
> > > > From: Evgeniy Manachkin <sfstudio@mail.ru>
> > > > Subject: [PATCH] mkspec - fix build rpm
> > > > 
> > > > This is patch to fix incorrect mkspec script to make rpm correctly at 2.6.27 vanilla kernel. This is regression in 2.6.27. 2.6.26 make rpm work good.
> > > > In 2.6.27 'make rpm' say error from rpmbuild "Many unpacked files (*.fw)." 
> > > > This is patch fix it this error.
> > > > 
> > > > Sorry my English.
> > > > 
> > > > Signed-off-by: Evgeniy Manachkin <sfstudio@mail.ru>
> > > 
> > > Acked-by: Alan Cox <alan@redhat.com>
> > > 
> > > This should IMHO go straight into both upstream and 2.6.27.x as it is a
> > > regression fix.
> > 
> > This doesn't seem to have gone into Linus's tree yet, can someone please
> > resend it?
> > 
> > Also be sure to cc: stable@kernel.org on this patch as well.
> 
> We are missing a Sam Ravnborg to merge it...

Back online as of yesterday.
Please resend patch to me.

	Sam

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

end of thread, other threads:[~2008-10-24 23:14 UTC | newest]

Thread overview: 15+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2008-10-15 14:04 patch to 2.6.27 fix build rpm Евгений Маначкин
2008-10-15 15:35 ` Cyrill Gorcunov
2008-10-15 16:54   ` Евгений Маначкин
2008-10-15 17:24     ` Cyrill Gorcunov
2008-10-15 17:37       ` Евгений Маначкин
2008-10-15 17:46         ` [PATCH] " Alan Cox
2008-10-23 20:46           ` [stable] " Greg KH
2008-10-23 23:50             ` Randy Dunlap
2008-10-24  6:04               ` Sam Ravnborg
2008-10-15 17:47         ` Re: " Cyrill Gorcunov
2008-10-16  1:17           ` Ian Hilt
2008-10-15 18:53         ` Frans Pop
2008-10-15 19:08           ` Евгений Маначкин
2008-10-15 18:56         ` H. Peter Anvin
2008-10-15 17:36     ` Alan Cox

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).