diff options
| author | Warner Losh <imp@FreeBSD.org> | 2024-10-15 11:11:02 +0000 |
|---|---|---|
| committer | Warner Losh <imp@FreeBSD.org> | 2024-10-15 11:11:02 +0000 |
| commit | 94164106c0a7e18b5ac7a1508fed179b6e6939f9 (patch) | |
| tree | 6964acfd323cbcd3b2bc2f57573feac869a55085 /stand | |
| parent | c5f3a7f62217f20f0c7b2c4fc3fb2646336b0802 (diff) | |
Diffstat (limited to 'stand')
| -rw-r--r-- | stand/efi/loader/main.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/stand/efi/loader/main.c b/stand/efi/loader/main.c index 400d46965c61..13ef90795d4b 100644 --- a/stand/efi/loader/main.c +++ b/stand/efi/loader/main.c @@ -767,9 +767,9 @@ parse_uefi_con_out(void) * all the other more common cases). */ if (efi_has_gop()) - how = RB_MULTIPLE; + how |= RB_MULTIPLE; else - how = RB_MULTIPLE | RB_SERIAL; + how |= RB_MULTIPLE | RB_SERIAL; setenv("console", "efi,comconsole", 1); goto out; } |
