mirror of
https://git.savannah.gnu.org/git/guix.git
synced 2026-05-22 00:55:56 +02: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:
committed by
Ludovic Courtès
parent
a9f7993ea7
commit
379d0f5184
+12
-2
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user