[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
26/92: hurd-boot: Cater for netdde.
From: |
guix-commits |
Subject: |
26/92: hurd-boot: Cater for netdde. |
Date: |
Fri, 23 Jun 2023 12:45:40 -0400 (EDT) |
janneke pushed a commit to branch hurd-team
in repository guix.
commit f9a2487c20a17ff556ae5c4bff1bbb8eae84f81c
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")))
- 13/92: Revert "hurd-boot: Add urandom and default-pager translators.", (continued)
- 13/92: Revert "hurd-boot: Add urandom and default-pager translators.", guix-commits, 2023/06/23
- 15/92: gnu: hurd: Update libpciaccess to 0.17., guix-commits, 2023/06/23
- 09/92: gnu: Add libc-locales-for-target and glibc-locales/hurd., guix-commits, 2023/06/23
- 11/92: squash! gnu: mig: Update to 04bfe7a91223ba15d868f7165e49328b1c6e86c3., guix-commits, 2023/06/23
- 17/92: gnu: hurd-minimal: Include libshouldbeinlibc and libstore., guix-commits, 2023/06/23
- 18/92: gnu: parted: Support building for the Hurd., guix-commits, 2023/06/23
- 21/92: services: childhurd: Bump default qemu memory to 2048MB., guix-commits, 2023/06/23
- 20/92: hurd-boot: Setup pci-arbiter and rumpdisk translators., guix-commits, 2023/06/23
- 23/92: bootloader: grub: Use rumpdisk-style root when booting with "noide"., guix-commits, 2023/06/23
- 25/92: gnu: netdde: Resurrect and update to 2.6.32.65-2-e67c284ac1., guix-commits, 2023/06/23
- 26/92: hurd-boot: Cater for netdde.,
guix-commits <=
- 28/92: services: static-networking: Support netdde for the Hurd., guix-commits, 2023/06/23
- 31/92: gnu: commencement: Add automake-boot0., guix-commits, 2023/06/23
- 32/92: gnu: commencement: gnumach-headers-boot0: Update to 1.8+git20221224., guix-commits, 2023/06/23
- 33/92: gnu: commencement: mig-boot0: Update to 1.8+git20230520., guix-commits, 2023/06/23
- 35/92: gnu: commencement: hurd-minimal-boot0: Update to 0.9.git20230216., guix-commits, 2023/06/23
- 50/92: gnu: elfutils: Skip failing tests on the Hurd., guix-commits, 2023/06/23
- 51/92: gnu: libbsd: Skip failing test on the Hurd., guix-commits, 2023/06/23
- 29/92: gnu: gnumach: Disable builtin networking., guix-commits, 2023/06/23
- 30/92: gnu: commencement: Add autoconf-boot0., guix-commits, 2023/06/23
- 34/92: gnu: commencement: hurd-headers-boot0: Update to 0.9.git20230216., guix-commits, 2023/06/23