From mboxrd@z Thu Jan 1 00:00:00 1970 From: Andreas Enge Subject: bug#30825: Building disk-image fails Date: Thu, 15 Mar 2018 16:14:16 +0100 Message-ID: <20180315151416.GA4969@jurong> References: <20180315133724.GA1967@jurong> Mime-Version: 1.0 Content-Type: multipart/mixed; boundary="+HP7ph2BbKc20aGI" Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:48673) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1ewUax-00051c-TJ for bug-guix@gnu.org; Thu, 15 Mar 2018 11:15:13 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1ewUas-0000rA-Ri for bug-guix@gnu.org; Thu, 15 Mar 2018 11:15:07 -0400 Received: from debbugs.gnu.org ([208.118.235.43]:55623) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1ewUas-0000qv-NI for bug-guix@gnu.org; Thu, 15 Mar 2018 11:15:02 -0400 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1ewUas-00008R-Eg for bug-guix@gnu.org; Thu, 15 Mar 2018 11:15:02 -0400 Sender: "Debbugs-submit" Resent-Message-ID: Content-Disposition: inline In-Reply-To: <20180315133724.GA1967@jurong> List-Id: Bug reports for GNU Guix List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: bug-guix-bounces+gcggb-bug-guix=m.gmane.org@gnu.org Sender: "bug-Guix" To: 30825@debbugs.gnu.org --+HP7ph2BbKc20aGI Content-Type: text/plain; charset=us-ascii Content-Disposition: inline I am attaching my configuration file as passed to ./pre-inst-env guix system disk-image lime.scm I am trying to create a GuixSD image to be run on the Olimex Lime system. When I comment out the line "initrd" (since the module does not exist on x86_64), a disk image is created on x86_64. What could I do to help debug this? Andreas --+HP7ph2BbKc20aGI Content-Type: text/plain; charset=us-ascii Content-Disposition: attachment; filename="lime.scm" (use-modules (gnu) (gnu bootloader u-boot)) (use-service-modules audio networking ssh) (use-package-modules screen ssh) (operating-system (host-name "my-mpd-server") (timezone "Europe/Berlin") (locale "en_US.utf8") (bootloader (bootloader-configuration (bootloader u-boot-a20-olinuxino-lime-bootloader) (target "/dev/sda"))) (initrd (lambda (fs . rest) (apply base-initrd fs ;; This module is required to mount the sd card. #:extra-modules (list "omap_hsmmc") rest))) (file-systems (cons (file-system (device "my-root") (title 'label) (mount-point "/") (type "ext4")) %base-file-systems)) (users (cons (user-account (name "mpd") (group "users") (home-directory "/home/mpd")) %base-user-accounts)) (services (cons* (dhcp-client-service) (agetty-service (agetty-configuration (extra-options '("-L")) (baud-rate "115200") (term "vt100") (tty "ttyO0"))) %base-services))) --+HP7ph2BbKc20aGI--