aboutsummaryrefslogtreecommitdiff
path: root/startup
diff options
context:
space:
mode:
authorSamuel Thibault <samuel.thibault@ens-lyon.org>2024-08-25 23:50:02 +0200
committerSamuel Thibault <samuel.thibault@ens-lyon.org>2024-08-25 23:51:38 +0200
commit3cbb6c48aba3e50c6c6430f9abcc6adcff1d7252 (patch)
tree5bf5c78d2e6d4d2f802e3aecb6e1de69a14bc046 /startup
parentbc7cd6773fcd6bf51156725b5c8881cb00ef45b7 (diff)
downloadhurd-3cbb6c48aba3e50c6c6430f9abcc6adcff1d7252.tar.gz
hurd-3cbb6c48aba3e50c6c6430f9abcc6adcff1d7252.tar.bz2
hurd-3cbb6c48aba3e50c6c6430f9abcc6adcff1d7252.zip
Make sure to also print early-fatal errors on mach console
In case the user is using a debug kernel, they will get to see these.
Diffstat (limited to 'startup')
-rw-r--r--startup/startup.c7
1 files changed, 5 insertions, 2 deletions
diff --git a/startup/startup.c b/startup/startup.c
index a1214800..5666efc6 100644
--- a/startup/startup.c
+++ b/startup/startup.c
@@ -899,8 +899,11 @@ launch_core_servers (void)
err = install_as_translator ();
if (err)
- /* Good luck. Who knows, maybe it's an old installation. */
- error (0, err, "Failed to bind to " _SERVERS_STARTUP);
+ {
+ /* Good luck. Who knows, maybe it's an old installation. */
+ mach_print ("Failed to bind to " _SERVERS_STARTUP "\n");
+ error (0, err, "Failed to bind to " _SERVERS_STARTUP);
+ }
if (verbose)
fprintf (stderr, "Installed on /servers/startup\n");