diff options
author | Damien Zammit <damien@zamaudio.com> | 2024-10-28 08:09:20 +0000 |
---|---|---|
committer | Samuel Thibault <samuel.thibault@ens-lyon.org> | 2024-10-28 22:14:54 +0100 |
commit | 9d620b992b0bb822d61837275c91c1b72c3dfc25 (patch) | |
tree | d1a1e1ed2361cc41aad6a7a7d5bf155353fc34a3 /console-client/Makefile | |
parent | 306e6c96d4368edc9ea90ffdfd687ae41930a0d0 (diff) | |
download | hurd-9d620b992b0bb822d61837275c91c1b72c3dfc25.tar.gz hurd-9d620b992b0bb822d61837275c91c1b72c3dfc25.tar.bz2 hurd-9d620b992b0bb822d61837275c91c1b72c3dfc25.zip |
console-client: Enable switching to gfx console when available
This compiles in and enables the new framebuffer codepath
in the vga driver, if detected.
Message-ID: <20241028080849.3196116-3-damien@zamaudio.com>
Diffstat (limited to 'console-client/Makefile')
-rw-r--r-- | console-client/Makefile | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/console-client/Makefile b/console-client/Makefile index b991cd73..711258c7 100644 --- a/console-client/Makefile +++ b/console-client/Makefile @@ -22,7 +22,7 @@ makemode := utilities targets = console CONSOLE_SRCS = console.c timer.c driver.c trans.c -VGA_SO_SRCS = bdf.c vga-dynafont.c vga-dynacolor.c vga-support.c vga.c +VGA_SO_SRCS = bdf.c vga-dynafont.c vga-dynacolor.c vga-support.c vga.c fb.c PC_KBD_SO_SRCS = pc-kbd.c kbd-repeat.c PC_MOUSE_SO_SRCS = pc-mouse.c GENERIC_SPEAKER_SO_SRCS = generic-speaker.c @@ -60,6 +60,7 @@ console: $(CONSOLE_SRCS:.c=.o) \ modules = vga pc_kbd generic_speaker pc_mouse current_vcs vga-CPPFLAGS = -DDEFAULT_VGA_FONT_DIR=\"${datadir}/hurd/\" +fb-CPPFLAGS = -DDEFAULT_VGA_FONT_DIR=\"${datadir}/hurd/\" vga.so.$(hurd-version): $(patsubst %.c,%_pic.o,$(VGA_SO_SRCS)) pc_kbd.so.$(hurd-version): $(patsubst %.c,%_pic.o,$(PC_KBD_SO_SRCS)) \ kdioctlServer_pic.o |