From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:54139) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1edkAH-0003yL-Eb for guix-patches@gnu.org; Mon, 22 Jan 2018 17:02:06 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1edkAE-0000t9-CE for guix-patches@gnu.org; Mon, 22 Jan 2018 17:02:05 -0500 Received: from debbugs.gnu.org ([208.118.235.43]:59005) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1edkAE-0000sz-8R for guix-patches@gnu.org; Mon, 22 Jan 2018 17:02:02 -0500 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1edkAD-0000hl-Ui for guix-patches@gnu.org; Mon, 22 Jan 2018 17:02:01 -0500 Subject: [bug#30216] [FIXME] system: Add ARM installer. Resent-Message-ID: Received: from eggs.gnu.org ([2001:4830:134:3::10]:54103) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1edk9i-0003fL-Rv for guix-patches@gnu.org; Mon, 22 Jan 2018 17:01:31 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1edk9f-0008Pa-Qm for guix-patches@gnu.org; Mon, 22 Jan 2018 17:01:30 -0500 Received: from dd26836.kasserver.com ([85.13.145.193]:44210) by eggs.gnu.org with esmtps (TLS1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1edk9f-0008Mv-JP for guix-patches@gnu.org; Mon, 22 Jan 2018 17:01:27 -0500 From: Danny Milosavljevic Date: Mon, 22 Jan 2018 23:00:11 +0100 Message-Id: <20180122220011.7896-1-dannym@scratchpost.org> 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: 30216@debbugs.gnu.org * gnu/system/install.scm (arm-installation-os): New exported variable. --- gnu/system/install.scm | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/gnu/system/install.scm b/gnu/system/install.scm index 286415052..a708e57f3 100644 --- a/gnu/system/install.scm +++ b/gnu/system/install.scm @@ -47,6 +47,7 @@ a20-olinuxino-lime-installation-os a20-olinuxino-lime2-emmc-installation-os a20-olinuxino-micro-installation-os + arm-installation-os banana-pi-m2-ultra-installation-os beaglebone-black-installation-os nintendo-nes-classic-edition-installation-os)) @@ -408,6 +409,11 @@ The bootloader BOOTLOADER is installed to BOOTLOADER-TARGET." (services (cons* (agetty-default-service tty) (operating-system-user-services installation-os))))) +(define arm-installation-os + (embedded-installation-os u-boot-bootloader + "/dev/null" + "ttyS0")) + (define beaglebone-black-installation-os (embedded-installation-os u-boot-beaglebone-black-bootloader "/dev/sda"