unofficial mirror of guix-devel@gnu.org 
 help / color / mirror / code / Atom feed
From: Marius Bakke <mbakke@fastmail.com>
To: guix-devel@gnu.org
Cc: Marius Bakke <mbakke@fastmail.com>
Subject: [PATCH 2/6] linux-initrd: Support FAT filesystems.
Date: Sat,  5 Nov 2016 12:55:07 +0000	[thread overview]
Message-ID: <20161105125511.29383-3-mbakke@fastmail.com> (raw)
In-Reply-To: <20161105125511.29383-1-mbakke@fastmail.com>

* gnu/system/linux-initrd.scm (base-initrd): When a FAT filesystem is
present: Add fatfsck/static in (helper-packages); and add nls_iso8859-1
in (linux-modules).
---
 gnu/system/linux-initrd.scm | 9 +++++++++
 1 file changed, 9 insertions(+)

diff --git a/gnu/system/linux-initrd.scm b/gnu/system/linux-initrd.scm
index 174239a..a787072 100644
--- a/gnu/system/linux-initrd.scm
+++ b/gnu/system/linux-initrd.scm
@@ -29,6 +29,7 @@
                 #:select (derivation->output-path))
   #:use-module (guix modules)
   #:use-module (gnu packages compression)
+  #:use-module (gnu packages disk)
   #:use-module (gnu packages linux)
   #:use-module (gnu packages guile)
   #:use-module ((gnu packages make-bootstrap)
@@ -193,6 +194,9 @@ loaded at boot time in the order in which they appear."
       ,@(if (find (file-system-type-predicate "9p") file-systems)
             virtio-9p-modules
             '())
+      ,@(if (find (file-system-type-predicate "vfat") file-systems)
+            '("nls_iso8859-1")
+            '())
       ,@(if volatile-root?
             '("fuse")
             '())
@@ -205,6 +209,11 @@ loaded at boot time in the order in which they appear."
                   file-systems)
             (list e2fsck/static)
             '())
+      ,@(if (find (lambda (fs)
+                    (string-suffix? "fat" (file-system-type fs)))
+                  file-systems)
+            (list fatfsck/static)
+            '())
       ,@(if volatile-root?
             (list unionfs-fuse/static)
             '())))
-- 
2.10.2

  parent reply	other threads:[~2016-11-05 12:55 UTC|newest]

Thread overview: 46+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2016-11-05 12:55 Initial vfat support Marius Bakke
2016-11-05 12:55 ` [PATCH 1/6] gnu: Add fatfsck-static Marius Bakke
2016-11-05 16:01   ` Hartmut Goebel
2016-11-05 16:11     ` Marius Bakke
2016-11-06 21:42   ` Ludovic Courtès
2016-11-05 12:55 ` Marius Bakke [this message]
2016-11-06 21:44   ` [PATCH 2/6] linux-initrd: Support FAT filesystems Ludovic Courtès
2016-11-05 12:55 ` [PATCH 3/6] file-systems: Suppress fsck status completion bar Marius Bakke
2016-11-06 21:47   ` Ludovic Courtès
2016-11-07  0:00     ` Marius Bakke
2016-11-07  8:59       ` Ludovic Courtès
2016-11-07  9:29         ` Marius Bakke
2016-11-07 10:15           ` Danny Milosavljevic
2016-12-17  9:40             ` Marius Bakke
2016-12-18 10:57               ` Ludovic Courtès
2016-11-05 12:55 ` [PATCH 4/6] gnu: Add efivar Marius Bakke
2016-11-06 21:51   ` Ludovic Courtès
2016-11-05 12:55 ` [PATCH 5/6] gnu: Add efibootmgr Marius Bakke
2016-11-06 21:52   ` Ludovic Courtès
2016-11-05 12:55 ` [PATCH 6/6] gnu: Add grub-efi Marius Bakke
2016-11-05 18:58   ` Leo Famulari
2016-11-05 19:38     ` Marius Bakke
2016-11-06 22:00       ` Ludovic Courtès
2016-11-07  0:19         ` Marius Bakke
2016-11-07  9:00           ` Ludovic Courtès
2016-11-07  9:23             ` Marius Bakke
2016-12-16 17:09               ` Ludovic Courtès
2016-12-16 17:16                 ` Danny Milosavljevic
2016-12-16 17:33                 ` Marius Bakke
2016-12-18 10:54                   ` Ludovic Courtès
2016-12-18 14:36                     ` Marius Bakke
2016-12-19 10:48                       ` Ludovic Courtès
2016-12-19 15:49                         ` Marius Bakke
2016-12-19 21:16                           ` Ludovic Courtès
2016-12-19 22:48                             ` Marius Bakke
2016-12-20 13:53                               ` Ludovic Courtès
2016-12-20 14:42                                 ` Marius Bakke
2016-12-20 16:53                                   ` Ludovic Courtès
2016-12-20 18:43                                     ` Marius Bakke
2016-12-21  9:12                                       ` Ludovic Courtès
2016-12-21 18:55                                         ` Danny Milosavljevic
2017-01-03 16:06                                 ` Ludovic Courtès
2017-01-03 16:16                                   ` Chris Marusich
2017-01-04 22:18                                     ` Ludovic Courtès
2016-12-17  9:38                 ` Marius Bakke
2016-12-17 10:15                   ` Marius Bakke

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=20161105125511.29383-3-mbakke@fastmail.com \
    --to=mbakke@fastmail.com \
    --cc=guix-devel@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).