From mboxrd@z Thu Jan 1 00:00:00 1970 From: Andreas Enge Subject: Re: [PATCH} Add RAID devices. Date: Sun, 31 Jul 2016 18:25:59 +0200 Message-ID: <20160731162559.GA12236@solar> References: <20160714131306.GA11566@solar> <20160723140701.GB6873@solar> <86k2g2pw0a.fsf@gmail.com> <20160731085203.GA4857@solar> <86lh0hlrcd.fsf@gmail.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:43472) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1bTtZ3-0001Ge-5h for guix-devel@gnu.org; Sun, 31 Jul 2016 12:26:09 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1bTtYz-0008Bt-00 for guix-devel@gnu.org; Sun, 31 Jul 2016 12:26:08 -0400 Received: from mailrelay1.public.one.com ([91.198.169.124]:24816) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1bTtYy-0008Bo-J9 for guix-devel@gnu.org; Sun, 31 Jul 2016 12:26:04 -0400 Content-Disposition: inline In-Reply-To: <86lh0hlrcd.fsf@gmail.com> List-Id: "Development of GNU Guix and the GNU System distribution." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guix-devel-bounces+gcggd-guix-devel=m.gmane.org@gnu.org Sender: "Guix-devel" To: myglc2 Cc: guix-devel@gnu.org On Sun, Jul 31, 2016 at 12:12:02PM -0400, myglc2 wrote: > Thanks, I tried that. the 'guix system reconfigure' succeeds and starts > the raid array (please see system35.scm & system35.log, attached). > > But the reboot hangs at: > > [...] clocksource: Switched to clocksource tsc No idea. The only difference I saw with my setup is that you have the #:mapped-devices clause in the initrd; I am just using this: ;; Add a kernel module for RAID-10. (initrd (lambda (file-systems . rest) (apply base-initrd file-systems #:extra-modules '("raid10") rest))) Andreas