guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

07/16: system: hurd: Add "/etc/fstab".


From: guix-commits
Subject: 07/16: system: hurd: Add "/etc/fstab".
Date: Sat, 11 Apr 2020 15:09:12 -0400 (EDT)

civodul pushed a commit to branch core-updates
in repository guix.

commit 379d0f51841f808d456b885824b50949d0939bd9
Author: Jan (janneke) Nieuwenhuizen <address@hidden>
AuthorDate: Sun Apr 5 08:39:20 2020 +0200

    system: hurd: Add "/etc/fstab".
    
    This allows running
    
        mount -o remount,rw /
    
    successfully.
    
    * gnu/system/hurd.scm (cross-hurd-image): Create a hard coded fstab and add 
it
    to hurd-os.
---
 gnu/system/hurd.scm | 14 ++++++++++++--
 1 file changed, 12 insertions(+), 2 deletions(-)

diff --git a/gnu/system/hurd.scm b/gnu/system/hurd.scm
index 0728ce8..03c49d4 100644
--- a/gnu/system/hurd.scm
+++ b/gnu/system/hurd.scm
@@ -72,6 +72,14 @@ menuentry \"GNU\" {
                                    #+mach #+mach #+hurd
                                    #+libc #+hurd))))))
 
+  (define fstab
+    (plain-file "fstab"
+"# This file was generated from your Guix configuration.  Any changes
+# will be lost upon reboot or reconfiguration.
+
+/dev/hd0s1     /       ext2    defaults
+"))
+
   (define hurd-directives
     `((directory "/servers")
       ,@(map (lambda (server)
@@ -94,13 +102,15 @@ menuentry \"GNU\" {
       ("/hurd" -> ,(file-append (with-parameters ((%current-target-system
                                                    "i586-pc-gnu"))
                                   hurd)
-                                "/hurd"))))
+                                "/hurd"))
+      ("/etc/fstab" -> ,fstab)))
 
   (qemu-image #:file-system-type "ext2"
               #:file-system-options '("-o" "hurd")
               #:device-nodes 'hurd
               #:inputs `(("system" ,hurd-os)
-                         ("grub.cfg" ,grub.cfg))
+                         ("grub.cfg" ,grub.cfg)
+                         ("fstab" , fstab))
               #:copy-inputs? #t
               #:os hurd-os
               #:bootcfg-drv grub.cfg



reply via email to

[Prev in Thread] Current Thread [Next in Thread]