From mboxrd@z Thu Jan 1 00:00:00 1970 From: ludo@gnu.org (Ludovic =?utf-8?Q?Court=C3=A8s?=) Subject: Re: [PATCH 16/17] gnu: Add linux-libre-multi-v7. Date: Sun, 11 Sep 2016 23:30:56 +0200 Message-ID: <87vay2f7jj.fsf@gnu.org> References: <20160909013641.GA9202@jasmine> <20160909123426.18499-1-david@craven.ch> <20160909123426.18499-16-david@craven.ch> Mime-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:45900) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1bjCLA-0006Rw-EN for guix-devel@gnu.org; Sun, 11 Sep 2016 17:31:05 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1bjCL6-0008KE-8t for guix-devel@gnu.org; Sun, 11 Sep 2016 17:31:03 -0400 In-Reply-To: <20160909123426.18499-16-david@craven.ch> (David Craven's message of "Fri, 9 Sep 2016 14:34:25 +0200") List-Id: "Development of GNU Guix and the GNU System distribution." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guix-devel-bounces+gcggd-guix-devel=m.gmane.org@gnu.org Sender: "Guix-devel" To: David Craven Cc: guix-devel@gnu.org David Craven skribis: > * gnu/packages/linux.scm (linux-libre-multi-v7): New variable. > --- > gnu/packages/linux.scm | 9 +++++++++ > 1 file changed, 9 insertions(+) > > diff --git a/gnu/packages/linux.scm b/gnu/packages/linux.scm > index 384b674..2eadae2 100644 > --- a/gnu/packages/linux.scm > +++ b/gnu/packages/linux.scm > @@ -399,6 +399,15 @@ It has been modified to remove all non-free binary b= lobs.") > '("x86_64-linux" "i686-linux") > #:configuration-file conf))) >=20=20 > +(define-public linux-libre-multi-v7 > + (let ((version "4.7.2") > + (hash "1rp09y2hv0hvdybm2n2im9717kzxmklpgzs8k1bmdfzqxyg8cb85")) > + (make-linux-libre version > + (make-linux-libre-source version hash) > + '("armhf-linux") > + #:defconfig "multi_v7_defconfig" > + #:extra-version "multi-v7"))) OK, but like Vincent, I find the name a little unclear. Maybe =E2=80=9Carmv7-multisomething=E2=80=9D, but what would that =E2=80=9Csometh= ing=E2=80=9D be? :-) Also, maybe =E2=80=98make-linux-libre=E2=80=99 should have default values f= or the version and source, so that we don=E2=80=99t have to upgrade several varian= ts when a new 4.7.x release comes out? Ludo=E2=80=99.