From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:470:142:3::10]:37675) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1iFlzi-0000nI-L2 for guix-patches@gnu.org; Wed, 02 Oct 2019 17:17:11 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1iFlzh-0001ch-8i for guix-patches@gnu.org; Wed, 02 Oct 2019 17:17:10 -0400 Received: from debbugs.gnu.org ([209.51.188.43]:57869) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1iFlzc-0001bI-77 for guix-patches@gnu.org; Wed, 02 Oct 2019 17:17:06 -0400 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1iFlzc-00013b-1f for guix-patches@gnu.org; Wed, 02 Oct 2019 17:17:04 -0400 Subject: [bug#37466] [WIP v4 4/7] gnu: Add heads-qemu-linuxboot. Resent-Message-ID: From: Danny Milosavljevic Date: Wed, 2 Oct 2019 23:15:59 +0200 Message-Id: <20191002211602.16635-5-dannym@scratchpost.org> In-Reply-To: <20191002211602.16635-1-dannym@scratchpost.org> References: <20190929110750.21214-1-dannym@scratchpost.org> <20191002211602.16635-1-dannym@scratchpost.org> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guix-patches-bounces+kyle=kyleam.com@gnu.org Sender: "Guix-patches" To: 37466@debbugs.gnu.org Cc: Danny Milosavljevic * gnu/packages/heads.scm (heads-qemu-linuxboot): New variable. --- gnu/packages/heads.scm | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/gnu/packages/heads.scm b/gnu/packages/heads.scm index 7d1f70a621..179dab1546 100644 --- a/gnu/packages/heads.scm +++ b/gnu/packages/heads.scm @@ -556,3 +556,12 @@ servers.") (sha256 (base32 "1bdj4m9dvih9fhp5q5c6cp5sphzbpag5gp4bz1p8g9lqi49lb7av")))) ,@(package-native-inputs heads))))) + +(define-public heads-qemu-linuxboot + (package + (inherit heads-linuxboot) + (name "heads-qemu-linuxboot") + (arguments + `(#:make-flags + '("BOARD=qemu-linuxboot") + ,@(package-arguments heads-linuxboot)))))