diff options
| author | David E. O'Brien <obrien@FreeBSD.org> | 2001-11-24 01:34:12 +0000 |
|---|---|---|
| committer | David E. O'Brien <obrien@FreeBSD.org> | 2001-11-24 01:34:12 +0000 |
| commit | d970bcc9db2e550c808ff10d50504b1e64c43a6c (patch) | |
| tree | bfb72082dfd11d6a829f5171aac2bae0fc8838c0 | |
| parent | 96f3cfa21e0b360310e9539a24d6751660c8a338 (diff) | |
Notes
| -rw-r--r-- | sys/kern/vfs_conf.c | 4 | ||||
| -rw-r--r-- | sys/kern/vfs_mount.c | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/sys/kern/vfs_conf.c b/sys/kern/vfs_conf.c index 595a3235d8d2..5bafcc883e53 100644 --- a/sys/kern/vfs_conf.c +++ b/sys/kern/vfs_conf.c @@ -268,9 +268,9 @@ vfs_mountroot_ask(void) printf("\nManual root filesystem specification:\n"); printf(" <fstype>:<device> Mount <device> using filesystem <fstype>\n"); #if defined(__i386__) || defined(__ia64__) - printf(" eg. ufs:%s%s\n", _PATH_DEV, "da0s1a"); + printf(" eg. ufs:da0s1a\n"); #else - printf(" eg. ufs:%s%s\n", _PATH_DEV, "da0a"); + printf(" eg. ufs:da0a\n"); #endif printf(" ? List valid disk boot devices\n"); printf(" <empty line> Abort manual input\n"); diff --git a/sys/kern/vfs_mount.c b/sys/kern/vfs_mount.c index 595a3235d8d2..5bafcc883e53 100644 --- a/sys/kern/vfs_mount.c +++ b/sys/kern/vfs_mount.c @@ -268,9 +268,9 @@ vfs_mountroot_ask(void) printf("\nManual root filesystem specification:\n"); printf(" <fstype>:<device> Mount <device> using filesystem <fstype>\n"); #if defined(__i386__) || defined(__ia64__) - printf(" eg. ufs:%s%s\n", _PATH_DEV, "da0s1a"); + printf(" eg. ufs:da0s1a\n"); #else - printf(" eg. ufs:%s%s\n", _PATH_DEV, "da0a"); + printf(" eg. ufs:da0a\n"); #endif printf(" ? List valid disk boot devices\n"); printf(" <empty line> Abort manual input\n"); |
