diff options
author | marcel <marcel@FreeBSD.org> | 2001-10-29 01:11:40 +0000 |
---|---|---|
committer | marcel <marcel@FreeBSD.org> | 2001-10-29 01:11:40 +0000 |
commit | ff26515539992140a91aa71b793fe4fe0fb2e29d (patch) | |
tree | 228e8c3d05016e7c0d77496ab3c84113e596fd87 /sys/boot/efi | |
parent | 7c3ce536c4c0a0c25f092b58ef7adc512ee62473 (diff) | |
download | FreeBSD-src-ff26515539992140a91aa71b793fe4fe0fb2e29d.zip FreeBSD-src-ff26515539992140a91aa71b793fe4fe0fb2e29d.tar.gz |
Set RB_MULTIPLE (multiple console support) if the kernel is booted
with the -D flag.
Diffstat (limited to 'sys/boot/efi')
-rw-r--r-- | sys/boot/efi/libefi/bootinfo.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/sys/boot/efi/libefi/bootinfo.c b/sys/boot/efi/libefi/bootinfo.c index 956b813..18e5405 100644 --- a/sys/boot/efi/libefi/bootinfo.c +++ b/sys/boot/efi/libefi/bootinfo.c @@ -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; |