Files
jsix_import/src/user/drv.uefi_fb/uefi_fb.module
Justin C. Miller 90a0eb3c53 [build] first pass at multiarch support
Changing bonnibel to respect the --arch flag to configure. This requires
some reworking of modules, mostly in the addition of the ModuleList
class instead of just a dict of modules.
2025-11-23 23:37:37 -08:00

14 lines
282 B
Python

# vim: ft=python
module("drv.uefi_fb",
target = "user",
deps = [ "libc", "bootproto" ],
description = "UEFI framebuffer driver",
drivers = [ "uefi.fb" ],
sources = [
"font.cpp",
"main.cpp",
"screen.cpp",
"scrollback.cpp",
])