[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
23/47: hurd-boot: Cater for netdde.
From: |
guix-commits |
Subject: |
23/47: hurd-boot: Cater for netdde. |
Date: |
Sat, 3 Jun 2023 07:23:39 -0400 (EDT) |
janneke pushed a commit to branch wip-hurd
in repository guix.
commit 1bb9bc7440263721259e585f54357cd049e8154a
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.
---
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 84eec85f5b..a9700fd1cd 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 wip-hurd created (now d764d59efe), guix-commits, 2023/06/03
- 03/47: gnu: gnumach-headers: Cross-build without relying on x86., guix-commits, 2023/06/03
- 06/47: gnu: gnumach: Update to 1.8+git20221224., guix-commits, 2023/06/03
- 11/47: gnu: Add libpciaccess-0.17., guix-commits, 2023/06/03
- 16/47: gnu: hurd: Add rumpkernel., guix-commits, 2023/06/03
- 21/47: gnu: gnumach: Support "noide" argument., guix-commits, 2023/06/03
- 05/47: gnu: Add libc-for-target and glibc/hurd., guix-commits, 2023/06/03
- 10/47: squash! gnu: mig: Update to 04bfe7a91223ba15d868f7165e49328b1c6e86c3., guix-commits, 2023/06/03
- 13/47: gnu: Add rumpkernel., guix-commits, 2023/06/03
- 25/47: services: static-networking: Support netdde for the Hurd., guix-commits, 2023/06/03
- 23/47: hurd-boot: Cater for netdde.,
guix-commits <=
- 30/47: gnu: commencement: mig-boot0: Update to 1.8+git20230520., guix-commits, 2023/06/03
- 02/47: gnu: glibc/hurd-headers: Properly cross-build., guix-commits, 2023/06/03
- 15/47: gnu: parted: Support building for the Hurd., guix-commits, 2023/06/03
- 17/47: hurd-boot: Setup pci-arbiter and rumpdisk translators., guix-commits, 2023/06/03
- 27/47: gnu: commencement: Add autoconf-boot0., guix-commits, 2023/06/03
- 26/47: gnu: gnumach: Disable builtin networking., guix-commits, 2023/06/03
- 28/47: gnu: commencement: Add automake-boot0., guix-commits, 2023/06/03
- 34/47: gnu: commencement: glibc-final: Use libc-for-target for source too., guix-commits, 2023/06/03
- 33/47: gnu: commencement: glibc-final-with-bootstrap-bash: Use libc-for-target., guix-commits, 2023/06/03
- 42/47: gnu: gettext-minimal: Remove XFAIL_TESTS for the Hurd., guix-commits, 2023/06/03