From mboxrd@z Thu Jan 1 00:00:00 1970 From: Andreas Enge Subject: [PATCH] Add mdadm to the installation image. Date: Thu, 14 Jul 2016 15:13:06 +0200 Message-ID: <20160714131306.GA11566@solar> Mime-Version: 1.0 Content-Type: multipart/mixed; boundary="qDbXVdCdHGoSgWSk" Content-Transfer-Encoding: 8bit Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:47747) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1bNgS4-0004To-FM for guix-devel@gnu.org; Thu, 14 Jul 2016 09:13:17 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1bNgS0-0002kH-6i for guix-devel@gnu.org; Thu, 14 Jul 2016 09:13:16 -0400 Received: from mailrelay2.public.one.com ([91.198.169.125]:45916) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1bNgRz-0002jp-PF for guix-devel@gnu.org; Thu, 14 Jul 2016 09:13:12 -0400 Content-Disposition: inline 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: guix-devel@gnu.org --qDbXVdCdHGoSgWSk Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Hello, the hydra replacement comes with two hard disks, which we would like to set up as a raid10. For this, one needs mdadm. While it can be pulled in during installation via "guix package -I mdadm", I think it is preferable that it already be around, the same as cryptsetup, for instance. The attached patch does this. What do you think? Andreas --qDbXVdCdHGoSgWSk Content-Type: text/plain; charset=iso-8859-15 Content-Disposition: attachment; filename="0001-install-Add-mdadm-to-the-image.patch" Content-Transfer-Encoding: 8bit >From eda9d6e5814c0e53f481599d0efd09d5237444d6 Mon Sep 17 00:00:00 2001 From: Andreas Enge Date: Thu, 14 Jul 2016 15:07:49 +0200 Subject: [PATCH] install: Add mdadm to the image. * gnu/system/install.scm (installation-os)[packages]: Add mdadm. --- gnu/system/install.scm | 2 ++ 1 file changed, 2 insertions(+) diff --git a/gnu/system/install.scm b/gnu/system/install.scm index 329c7ab..734a361 100644 --- a/gnu/system/install.scm +++ b/gnu/system/install.scm @@ -1,6 +1,7 @@ ;;; GNU Guix --- Functional package management for GNU ;;; Copyright © 2014, 2015, 2016 Ludovic Courtès ;;; Copyright © 2015 Mark H Weaver +;;; Copyright © 2016 Andreas Enge ;;; ;;; This file is part of GNU Guix. ;;; @@ -392,6 +393,7 @@ Use Alt-F2 for documentation. parted ddrescue grub ;mostly so xrefs to its manual work cryptsetup + mdadm btrfs-progs wireless-tools iw wpa-supplicant-minimal iproute ;; XXX: We used to have GNU fdisk here, but as of version -- 2.8.4 --qDbXVdCdHGoSgWSk--