From 44e65a75886282a01001179e01bff2b9e957eb0a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ludovic=20Court=C3=A8s?= Date: Thu, 8 Oct 2020 12:15:06 +0200 Subject: [PATCH] hurd-boot: Create /servers/crash. * gnu/build/hurd-boot.scm (set-hurd-device-translators): Create /servers/crash. --- gnu/build/hurd-boot.scm | 1 + 1 file changed, 1 insertion(+) diff --git a/gnu/build/hurd-boot.scm b/gnu/build/hurd-boot.scm index adc8b4ce16..45d0040e60 100644 --- a/gnu/build/hurd-boot.scm +++ b/gnu/build/hurd-boot.scm @@ -244,6 +244,7 @@ (define devices (false-if-EEXIST (symlink "/dev/fd/0" (scope "dev/stdin"))) (false-if-EEXIST (symlink "/dev/fd/1" (scope "dev/stdout"))) (false-if-EEXIST (symlink "/dev/fd/2" (scope "dev/stderr"))) + (false-if-EEXIST (symlink "crash-dump-core" (scope "servers/crash"))) ;; Make sure /etc/mtab is a symlink to /proc/mounts. (false-if-exception (delete-file (scope "etc/mtab")))