From e77b6cfe34cfa16f6aac336576655df68d800027 Mon Sep 17 00:00:00 2001 From: Edward Tomasz Napierala Date: Wed, 15 Aug 2018 12:12:21 +0000 Subject: [PATCH] In the help message at the mountroot prompt, suggest something that actually works and matches the bsdinstall(8) default. MFC after: 2 weeks Sponsored by: DARPA, AFRL --- sys/kern/vfs_mountroot.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sys/kern/vfs_mountroot.c b/sys/kern/vfs_mountroot.c index 0b41cb7a7e44..ed953b5a3ab6 100644 --- a/sys/kern/vfs_mountroot.c +++ b/sys/kern/vfs_mountroot.c @@ -508,7 +508,7 @@ parse_dir_ask(char **conf) printf(" and with the specified (optional) option list.\n"); printf("\n"); printf(" eg. ufs:/dev/da0s1a\n"); - printf(" zfs:tank\n"); + printf(" zfs:zroot/ROOT/default\n"); printf(" cd9660:/dev/cd0 ro\n"); printf(" (which is equivalent to: "); printf("mount -t cd9660 -o ro /dev/cd0 /)\n");