From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:48247) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1ek99q-00050L-Dp for guix-patches@gnu.org; Fri, 09 Feb 2018 08:56:10 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1ek99n-0000v1-CU for guix-patches@gnu.org; Fri, 09 Feb 2018 08:56:06 -0500 Received: from debbugs.gnu.org ([208.118.235.43]:55134) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1ek99n-0000uv-8f for guix-patches@gnu.org; Fri, 09 Feb 2018 08:56:03 -0500 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1ek99n-0002dr-1N for guix-patches@gnu.org; Fri, 09 Feb 2018 08:56:03 -0500 Subject: [bug#30371] [PATCH] system: Add Cubieboard2. Resent-Message-ID: From: ludo@gnu.org (Ludovic =?UTF-8?Q?Court=C3=A8s?=) References: <20180206175842.25819-1-dannym@scratchpost.org> Date: Fri, 09 Feb 2018 14:55:35 +0100 In-Reply-To: <20180206175842.25819-1-dannym@scratchpost.org> (Danny Milosavljevic's message of "Tue, 6 Feb 2018 18:58:42 +0100") Message-ID: <878tc21d48.fsf@gnu.org> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable 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: Danny Milosavljevic Cc: 30371@debbugs.gnu.org Hi Danny, Danny Milosavljevic skribis: > * gnu/bootloader/u-boot.scm (u-boot-cubieboard2-bootloader): New > exported variable. > * gnu/packages/bootloaders.scm (u-boot-cubieboard2): New exported > variable. > * gnu/system/install.scm (cubieboard2-installation-os): New exported > variable. [...] > +(define u-boot-cubieboard2-bootloader > + (bootloader > + (inherit u-boot-allwinner-bootloader) > + (package u-boot-cubieboard2))) [...] > +(define-public u-boot-cubieboard2 > + (make-u-boot-package "Cubieboard2" "arm-linux-gnueabihf")) Could you add a few words and a link to a page that describes this board? I=E2=80=99m afraid of having a large collection of boards listed there that= few people will even know about. :-) Also, were you able to successfully run GuixSD on this board? > +(define cubieboard2-installation-os > + (embedded-installation-os u-boot-cubieboard2-bootloader > + "/dev/mmcblk0" ; SD card storage > + "ttyS0")) > + > (define nintendo-nes-classic-edition-installation-os > (embedded-installation-os u-boot-nintendo-nes-classic-edition-bootload= er > "/dev/mmcblk0" ; SD card (solder it yourself) I=E2=80=99m also unsure we need to have one variable for each possible boar= d. We are not going to distribute installation images for each of these boards anyway. Perhaps it makes sense to have them *if* they are discoverable or listed in the manual, *and* we provide instructions for people to build their own installation image for these boards. Thoughts? Ludo=E2=80=99.