system: hurd: Create /etc/{hostname,motd,login} and /root.
authorLudovic Courtès <ludo@gnu.org>
Mon, 6 Apr 2020 12:58:58 +0000 (14:58 +0200)
committerLudovic Courtès <ludo@gnu.org>
Sat, 11 Apr 2020 19:01:09 +0000 (21:01 +0200)
* gnu/system/hurd.scm (cross-hurd-image): Add /etc/{hostname,motd,login}
and /root.

gnu/system/hurd.scm

index 6570616..75b9dac 100644 (file)
@@ -108,17 +108,32 @@ menuentry \"GNU\" {
       ("/servers/socket/local" -> "1")
       ("/servers/socket/inet" -> "2")
       ("/servers/socket/inet6" -> "16")
-      (file "/etc/resolv.conf"
-            "nameserver 10.0.2.3\n")
       (directory "/boot")
       ("/boot/grub.cfg" -> ,grub.cfg)  ;XXX: not strictly needed
       ("/hurd" -> ,(file-append (with-parameters ((%current-target-system
                                                    "i586-pc-gnu"))
                                   hurd)
                                 "/hurd"))
+
+      ;; TODO: Create those during activation, eventually.
+      (directory "/root")
       ("/etc/fstab" -> ,fstab)
       ("/etc/passwd" -> ,passwd)
       ("/etc/shadow" -> ,shadow)
+      (file "/etc/hostname" "guixygnu")
+      (file "/etc/resolv.conf"
+            "nameserver 10.0.2.3\n")
+
+      ("/etc/motd" -> ,(file-append (with-parameters ((%current-target-system
+                                                       "i586-pc-gnu"))
+                                      hurd)
+                                    "/etc/motd"))
+      ("/etc/login" -> ,(file-append (with-parameters ((%current-target-system
+                                                       "i586-pc-gnu"))
+                                      hurd)
+                                     "/etc/login"))
+
+
       ;; XXX can we instead, harmlessly set _PATH_TTYS (from glibc) in runttys.c?
       ("/etc/ttys" -> ,(file-append (with-parameters ((%current-target-system
                                                    "i586-pc-gnu"))