mirror of
https://github.com/opnsense/src.git
synced 2026-05-22 01:54:31 -04:00
We only have slices on i386 and IA-64.
This commit is contained in:
parent
114de50e0d
commit
cabb03fc76
2 changed files with 10 additions and 2 deletions
|
|
@ -267,7 +267,11 @@ vfs_mountroot_ask(void)
|
|||
for(;;) {
|
||||
printf("\nManual root filesystem specification:\n");
|
||||
printf(" <fstype>:<device> Mount <device> using filesystem <fstype>\n");
|
||||
printf(" eg. ufs:%sda0s1a\n", _PATH_DEV);
|
||||
#if defined(__i386__) || defined(__ia64__)
|
||||
printf(" eg. ufs:%s%s\n", _PATH_DEV, "da0s1a");
|
||||
#else
|
||||
printf(" eg. ufs:%s%s\n", _PATH_DEV, "da0a");
|
||||
#endif
|
||||
printf(" ? List valid disk boot devices\n");
|
||||
printf(" <empty line> Abort manual input\n");
|
||||
printf("\nmountroot> ");
|
||||
|
|
|
|||
|
|
@ -267,7 +267,11 @@ vfs_mountroot_ask(void)
|
|||
for(;;) {
|
||||
printf("\nManual root filesystem specification:\n");
|
||||
printf(" <fstype>:<device> Mount <device> using filesystem <fstype>\n");
|
||||
printf(" eg. ufs:%sda0s1a\n", _PATH_DEV);
|
||||
#if defined(__i386__) || defined(__ia64__)
|
||||
printf(" eg. ufs:%s%s\n", _PATH_DEV, "da0s1a");
|
||||
#else
|
||||
printf(" eg. ufs:%s%s\n", _PATH_DEV, "da0a");
|
||||
#endif
|
||||
printf(" ? List valid disk boot devices\n");
|
||||
printf(" <empty line> Abort manual input\n");
|
||||
printf("\nmountroot> ");
|
||||
|
|
|
|||
Loading…
Reference in a new issue