From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1754752AbYJORY0 (ORCPT ); Wed, 15 Oct 2008 13:24:26 -0400 Received: (majordomo@vger.kernel.org) by vger.kernel.org id S1752622AbYJORYR (ORCPT ); Wed, 15 Oct 2008 13:24:17 -0400 Received: from ey-out-2122.google.com ([74.125.78.26]:12688 "EHLO ey-out-2122.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751671AbYJORYQ (ORCPT ); Wed, 15 Oct 2008 13:24:16 -0400 DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=date:from:to:cc:subject:message-id:references:mime-version :content-type:content-disposition:content-transfer-encoding :in-reply-to:user-agent; b=X+pJD6eyAuvGTB5piC5CoGMA8jy3ffc6Dvn2ywDFuLy9j33xsHx5QdilFWcs5gTdRj mVWzSKdQwYPmM7sR5aNBI+Oa12N8S70eKxykhgQYVx3rv6F17KqsEYTKhnnDMlUEBQJI 2PZ5wt+qo7zhvG4dagUF+7JfhUSTI6nLWi2Po= Date: Wed, 15 Oct 2008 21:24:12 +0400 From: Cyrill Gorcunov To: =?utf-8?B?0JXQstCz0LXQvdC40Lkg0JzQsNC90LDRh9C60LjQvQ==?= Cc: linux-kernel@vger.kernel.org Subject: Re: Re: patch to 2.6.27 fix build rpm Message-ID: <20081015172412.GB20222@localhost> References: <20081015153533.GA20222@localhost> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Disposition: inline Content-Transfer-Encoding: 8bit In-Reply-To: User-Agent: Mutt/1.5.17+20080114 (2008-01-14) Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org [Евгений Маначкин - 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 Subject: [PATCH] mkspec - fix build rpm Patch description goes here Signed-off-by: Evgeniy Manachkin --- 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 -