mirror of
https://github.com/opnsense/src.git
synced 2026-06-04 22:32:43 -04:00
loader.efi: |= the boot flags how
how is assumed to be 0, so we directly assign to it. It might not always
be 0, so or-in these bits.
Sponsored by: Netflix
Reviewed by: bz, andrew
Differential Revision: https://reviews.freebsd.org/D47084
(cherry picked from commit 94164106c0)
This commit is contained in:
parent
be3e3cdc61
commit
5eba69a061
1 changed files with 2 additions and 2 deletions
|
|
@ -777,9 +777,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;
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue