[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
20/24: hurd-boot: Cater for netdde.
From: |
guix-commits |
Subject: |
20/24: hurd-boot: Cater for netdde. |
Date: |
Thu, 13 Jul 2023 13:02:38 -0400 (EDT) |
jpoiret pushed a commit to branch master
in repository guix.
commit 030b15d466a2a1611e0d4b52971c4b1752b86ccc
Author: Janneke Nieuwenhuizen <janneke@gnu.org>
AuthorDate: Wed May 24 23:23:30 2023 +0200
hurd-boot: Cater for netdde.
* gnu/build/hurd-boot.scm (set-hurd-device-translators): Setup translators
for
netdde, eth{0,1}. Create /servers/socket/{inet,inet6} symlinks.
Signed-off-by: Josselin Poiret <dev@jpoiret.xyz>
---
gnu/build/hurd-boot.scm | 10 ++++++++++
1 file changed, 10 insertions(+)
diff --git a/gnu/build/hurd-boot.scm b/gnu/build/hurd-boot.scm
index 18b7feabc3..19bdbdf6ae 100644
--- a/gnu/build/hurd-boot.scm
+++ b/gnu/build/hurd-boot.scm
@@ -215,6 +215,13 @@ set."
("dev/fd" ("/hurd/magic" "--directory" "fd") #o555)
("dev/rumpdisk" ("/hurd/rumpdisk") #o660)
+ ("dev/netdde" ("/hurd/netdde") #o660)
+ ("dev/eth0" ("/hurd/devnode" "--master-device=/dev/net"
+ "eth0")
+ #o660)
+ ("dev/eth1" ("/hurd/devnode" "--master-device=/dev/net"
+ "eth1")
+ #o660)
;; Create a number of ttys; syslogd writes to tty12 by default.
;; FIXME: Creating /dev/tty12 leads the console client to switch to
@@ -268,6 +275,9 @@ set."
(false-if-EEXIST (symlink "/dev/fd/2" (scope "dev/stderr")))
(false-if-EEXIST (symlink "crash-dump-core" (scope "servers/crash")))
(false-if-EEXIST (symlink "/dev/rumpdisk" (scope "dev/disk")))
+ (false-if-EEXIST (symlink "/dev/netdde" (scope "dev/net")))
+ (false-if-EEXIST (symlink "/servers/socket/2" (scope "servers/socket/inet")))
+ (false-if-EEXIST (symlink "/servers/socket/26" (scope
"servers/socket/inet6")))
;; Make sure /etc/mtab is a symlink to /proc/mounts.
(false-if-exception (delete-file (scope "etc/mtab")))
- branch master updated (ff208b4b62 -> d17879cd0d), guix-commits, 2023/07/13
- 01/24: gnu: glibc/hurd-headers: Properly cross-build., guix-commits, 2023/07/13
- 04/24: gnu: Add libc-for-target and glibc/hurd., guix-commits, 2023/07/13
- 06/24: gnu: mig: Update to 1.8+git20230520., guix-commits, 2023/07/13
- 08/24: gnu: Add libpciaccess-0.17., guix-commits, 2023/07/13
- 10/24: gnu: Add rumpkernel., guix-commits, 2023/07/13
- 17/24: bootloader: grub: Use rumpdisk-style root when booting with "noide"., guix-commits, 2023/07/13
- 19/24: gnu: netdde: Resurrect and update to 2.6.32.65-2-e67c284ac1., guix-commits, 2023/07/13
- 20/24: hurd-boot: Cater for netdde.,
guix-commits <=
- 02/24: gnu: gnumach-headers: Cross-build without relying on x86., guix-commits, 2023/07/13
- 03/24: gnu: hurd: Update supported systems., guix-commits, 2023/07/13
- 05/24: gnu: gnumach: Update to 1.8+git20221224., guix-commits, 2023/07/13
- 07/24: gnu: hurd: Update to v0.9.git20230216., guix-commits, 2023/07/13
- 09/24: gnu: hurd: Update libpciaccess to 0.17., guix-commits, 2023/07/13
- 12/24: gnu: parted: Support building for the Hurd., guix-commits, 2023/07/13
- 14/24: hurd-boot: Setup pci-arbiter and rumpdisk translators., guix-commits, 2023/07/13
- 16/24: system: hurd: Boot with pci.arbiter and rumpdisk., guix-commits, 2023/07/13
- 18/24: gnu: gnumach: Support "noide" argument., guix-commits, 2023/07/13
- 22/24: services: static-networking: Support netdde for the Hurd., guix-commits, 2023/07/13