3
5
Fork 0
mirror of git://git.savannah.gnu.org/guix.git synced 2023-12-14 03:33:07 +01:00

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.
This commit is contained in:
Jan (janneke) Nieuwenhuizen 2020-04-05 08:39:20 +02:00 committed by Ludovic Courtès
parent a9f7993ea7
commit 379d0f5184
No known key found for this signature in database
GPG key ID: 090B11993D9AEBB5

View file

@ -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