diff options
Diffstat (limited to 'sys/kern/vfs_conf.c')
| -rw-r--r-- | sys/kern/vfs_conf.c | 3 | 
1 files changed, 2 insertions, 1 deletions
diff --git a/sys/kern/vfs_conf.c b/sys/kern/vfs_conf.c index 2c1b7a31a5d4..2ca4618599fc 100644 --- a/sys/kern/vfs_conf.c +++ b/sys/kern/vfs_conf.c @@ -55,6 +55,7 @@  #include <sys/disklabel.h>  #include <sys/conf.h>  #include <sys/cons.h> +#include <paths.h>  #include "opt_ddb.h"  #ifdef DDB @@ -253,7 +254,7 @@ vfs_mountroot_ask(void)  	for(;;) {  		printf("\nManual root filesystem specification:\n");  		printf("  <fstype>:<device>  Mount <device> using filesystem <fstype>\n"); -		printf("                       eg. ufs:/dev/da0s1a\n"); +		printf("                       eg. ufs:%sda0s1a\n", _PATH_DEV);  		printf("  ?                  List valid disk boot devices\n");  		printf("  <empty line>       Abort manual input\n");  		printf("\nmountroot> ");  | 
