From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from cantor2.suse.de ([195.135.220.15]:38378 "EHLO mx2.suse.de" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1759037Ab3HMUVB (ORCPT ); Tue, 13 Aug 2013 16:21:01 -0400 Message-ID: <520A9528.4000309@suse.cz> Date: Tue, 13 Aug 2013 22:20:56 +0200 From: Michal Marek MIME-Version: 1.0 Subject: Re: [PATCH] Provide version number for Debian firmware package References: <1376250919-13886-1-git-send-email-xypron.glpk@gmx.de> In-Reply-To: <1376250919-13886-1-git-send-email-xypron.glpk@gmx.de> Content-Type: text/plain; charset=ISO-8859-2 Content-Transfer-Encoding: 7bit Sender: linux-kbuild-owner@vger.kernel.org List-ID: To: Heinrich Schuchardt Cc: linux-kbuild@vger.kernel.org, maximilian attems , Ben Hutchings Dne 11.8.2013 21:55, Heinrich Schuchardt napsal(a): > scripts/package/builddeb is used to create Debian packages. > Currently the firmware package always gets the same version number > irrespective of the Kernel version. > The paths inside the firmware package depend on the Kernel > version. > > With the patch supplied the Kernel version becomes part of the > Debian firmware package number. Ben, Max, is this how the official linux-firmware-image package is built in Debian? The change makes sense to me. Michal > > Signed-off-by: Heinrich Schuchardt > --- > scripts/package/builddeb | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > diff --git a/scripts/package/builddeb b/scripts/package/builddeb > index acb8650..4ca6111 100644 > --- a/scripts/package/builddeb > +++ b/scripts/package/builddeb > @@ -79,7 +79,7 @@ fwdir="$objtree/debian/fwtmp" > kernel_headers_dir="$objtree/debian/hdrtmp" > libc_headers_dir="$objtree/debian/headertmp" > packagename=linux-image-$version > -fwpackagename=linux-firmware-image > +fwpackagename=linux-firmware-image-$version > kernel_headers_packagename=linux-headers-$version > libc_headers_packagename=linux-libc-dev > >