mirror of
https://git.hardenedbsd.org/hardenedbsd/HardenedBSD.git
synced 2024-12-25 12:02:01 +01:00
stand: Ugly hack due to default change
So this is a gross hack to fix the 'noclean' build since we changed to
text-only loader. We have to fix it in a better way, but for the moment,
this will fix non-meta no-clean builds. A better hack is to fix this so
we build either vidconsole.c or textvidc.c, but some minor refactoring
and variable renaming is needed.
Fixes: 23dee252da
Sponsored by: Netflix
This commit is contained in:
parent
7937bfbc0c
commit
10c429016a
@ -134,7 +134,7 @@ extern struct console nullconsole;
|
|||||||
extern struct console spinconsole;
|
extern struct console spinconsole;
|
||||||
|
|
||||||
struct console *consoles[] = {
|
struct console *consoles[] = {
|
||||||
#ifdef BIOS_TEXT_ONLY
|
#ifdef BIOS_TEXT_ONLY /* Note: We need a forced commit for this */
|
||||||
&textvidc,
|
&textvidc,
|
||||||
#else
|
#else
|
||||||
&vidconsole,
|
&vidconsole,
|
||||||
|
@ -22,7 +22,7 @@
|
|||||||
#include <gfx_fb.h>
|
#include <gfx_fb.h>
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#ifdef BIOS_TEXT_ONLY
|
#ifdef BIOS_TEXT_ONLY /* Note: likely need a forced commits when this changes */
|
||||||
void autoload_font(bool bios);
|
void autoload_font(bool bios);
|
||||||
|
|
||||||
void
|
void
|
||||||
|
Loading…
Reference in New Issue
Block a user