summaryrefslogtreecommitdiff
path: root/libdiskfs/boot-start.c
diff options
context:
space:
mode:
authorRoland McGrath <roland@gnu.org>1998-12-27 22:58:35 +0000
committerRoland McGrath <roland@gnu.org>1998-12-27 22:58:35 +0000
commitb2a33aedb91c49620c0eb2d975ba2b02c5dc4908 (patch)
treec59bddbbe78e6c6956e765c6b03e541022d4d0ab /libdiskfs/boot-start.c
parent8d153aa0cebde35013f0b0659d288b2dd1724c9f (diff)
1998-12-27 Roland McGrath <roland@baalperazim.frob.com>
* boot-start.c (diskfs_start_bootstrap): Twiddle boot-time messages.
Diffstat (limited to 'libdiskfs/boot-start.c')
-rw-r--r--libdiskfs/boot-start.c16
1 files changed, 4 insertions, 12 deletions
diff --git a/libdiskfs/boot-start.c b/libdiskfs/boot-start.c
index 7d92aceb..21fc9656 100644
--- a/libdiskfs/boot-start.c
+++ b/libdiskfs/boot-start.c
@@ -137,9 +137,9 @@ diskfs_start_bootstrap ()
}
/* Here we assume the parent has already printed:
- Hurd server bootstrap: bootfs exec ourfs
+ Hurd server bootstrap: bootfs[bootdev] exec ourfs
*/
- printf ("[re-bootstrap]:");
+ printf ("\nContinuing on new root filesystem %s:", diskfs_disk_name);
fflush (stdout);
}
else
@@ -147,7 +147,8 @@ diskfs_start_bootstrap ()
uid_t idlist[] = {0, 0, 0};
file_t execnode;
- printf ("Hurd server bootstrap: %s", program_invocation_short_name);
+ printf ("Hurd server bootstrap: %s[%s]",
+ program_invocation_short_name, diskfs_disk_name);
fflush (stdout);
/* Get the execserver going and wait for its fsys_startup */
@@ -533,15 +534,6 @@ diskfs_S_fsys_init (mach_port_t port,
RPC just as init would. */
err = proc_task2proc (procserver, parent_task, &parent_proc);
assert_perror (err);
- {
- pid_t pid;
- err = proc_task2pid (procserver, parent_task, &pid);
- assert_perror (err);
- printf("BOOT parent pid %d\n",pid);
- err = proc_task2pid (procserver, mach_task_self(), &pid);
- assert_perror (err);
- printf("BOOT our pid %d\n",pid);
- }
/* We don't need this anymore. */
mach_port_deallocate (mach_task_self (), parent_task);