unofficial mirror of bug-guix@gnu.org 
 help / color / mirror / code / Atom feed
From: myglc2 <myglc2@gmail.com>
To: "Ludovic Courtès" <ludo@gnu.org>
Cc: 24130@debbugs.gnu.org
Subject: bug#24130: RAID config boot hangs at [...] Clocksource: Switched to clocksource tsc
Date: Thu, 12 Jan 2017 23:34:15 -0500	[thread overview]
Message-ID: <86mvevtw6w.fsf@gmail.com> (raw)
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")

On 01/11/2017 at 23:14 Ludovic Courtès writes:

> Could you tell me if this bug is still relevant?

Hi Ludo’,

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")		   
		 (create-mount-point? #t)
		 (type "ext4")
		 )
		(file-system
		 (title 'device)
		 (device "/dev/md2")
		 (dependencies (list md2))
		 (mount-point "/mnt/md2")		   
		 (create-mount-point? #t)
		 (type "ext4")
		 )
		%base-file-systems))


guix version:

guix (GNU Guix) 0.12.0
v0.12.0-456-gb0a567640

  reply	other threads:[~2017-01-13  4:28 UTC|newest]

Thread overview: 5+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2016-08-02  1:43 bug#24130: RAID config boot hangs at [...] Clocksource: Switched to clocksource tsc myglc2
2016-11-09 20:45 ` Ludovic Courtès
2017-01-11 22:14   ` Ludovic Courtès
2017-01-13  4:34     ` myglc2 [this message]
2017-01-13  8:04       ` Ludovic Courtès

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

  List information: https://guix.gnu.org/

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=86mvevtw6w.fsf@gmail.com \
    --to=myglc2@gmail.com \
    --cc=24130@debbugs.gnu.org \
    --cc=ludo@gnu.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
Code repositories for project(s) associated with this public inbox

	https://git.savannah.gnu.org/cgit/guix.git

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).