Set RB_MULTIPLE (multiple console support) if the kernel is booted

with the -D flag.
This commit is contained in:
Marcel Moolenaar 2001-10-29 01:11:40 +00:00
parent 5e8a6141be
commit 997313be99
2 changed files with 6 additions and 0 deletions

View File

@ -90,6 +90,9 @@ bi_getboothowto(char *kargs)
case 'd':
howto |= RB_KDB;
break;
case 'D':
howto |= RB_MULTIPLE;
break;
case 'm':
howto |= RB_MUTE;
break;

View File

@ -90,6 +90,9 @@ bi_getboothowto(char *kargs)
case 'd':
howto |= RB_KDB;
break;
case 'D':
howto |= RB_MULTIPLE;
break;
case 'm':
howto |= RB_MUTE;
break;