From mboxrd@z Thu Jan 1 00:00:00 1970 From: myglc2 Subject: bug#24130: RAID config boot hangs at [...] Clocksource: Switched to clocksource tsc Date: Thu, 12 Jan 2017 23:34:15 -0500 Message-ID: <86mvevtw6w.fsf@gmail.com> References: <86eg6854ju.fsf@gmail.com> <87a8d8757k.fsf@gnu.org> <87tw95utvz.fsf@gnu.org> 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]:34631) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1cRtTC-0002zw-H8 for bug-guix@gnu.org; Thu, 12 Jan 2017 23:28:07 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1cRtT8-0005qE-Ej for bug-guix@gnu.org; Thu, 12 Jan 2017 23:28:06 -0500 Received: from debbugs.gnu.org ([208.118.235.43]:36579) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1cRtT8-0005qA-As for bug-guix@gnu.org; Thu, 12 Jan 2017 23:28:02 -0500 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1cRtT8-0008LS-4b for bug-guix@gnu.org; Thu, 12 Jan 2017 23:28:02 -0500 Sender: "Debbugs-submit" Resent-Message-ID: In-Reply-To: <87tw95utvz.fsf@gnu.org> ("Ludovic \=\?utf-8\?Q\?Court\=C3\=A8s\=22'\?\= \=\?utf-8\?Q\?s\?\= message of "Wed, 11 Jan 2017 23:14:08 +0100") 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: Ludovic =?UTF-8?Q?Court=C3=A8s?= Cc: 24130@debbugs.gnu.org On 01/11/2017 at 23:14 Ludovic Court=C3=A8s writes: > Could you tell me if this bug is still relevant? Hi Ludo=E2=80=99, Sorry for the delay, I had to swap hardware around to revisit this. I am now able to assemble 3 arrays as shown below, so I think you should close the bug. config: (define md0 (mapped-device (source (list "/dev/sdb1" "/dev/sdc1")) (target "/dev/md0") (type raid-device-mapping))) (define md1 (mapped-device (source (list "/dev/sdb5" "/dev/sdc5")) (target "/dev/md1") (type raid-device-mapping))) (define md2 (mapped-device (source (list "/dev/sdb6" "/dev/sdc6")) (target "/dev/md2") (type raid-device-mapping))) (operating-system (host-name "g1") (timezone "America/New_York") (locale "en_US.utf8") (bootloader (grub-configuration (device "/dev/sda"))) (mapped-devices (list md0 md1 md2)) ;; Add a kernel module for RAID-1. (initrd (lambda (file-systems . rest) (apply base-initrd file-systems #:extra-modules '("raid1") rest))) (file-systems (cons* (file-system (device "ssd-root") (title 'label) (mount-point "/") (type "ext4")) (file-system (title 'device) (device "/dev/md0") (dependencies (list md0)) (mount-point "/mnt/md0")=09=09=20=20=20 (create-mount-point? #t) (type "ext4") ) (file-system (title 'device) (device "/dev/md2") (dependencies (list md2)) (mount-point "/mnt/md2")=09=09=20=20=20 (create-mount-point? #t) (type "ext4") ) %base-file-systems)) guix version: guix (GNU Guix) 0.12.0 v0.12.0-456-gb0a567640