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.
14 lines
282 B
Python
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",
|
|
])
|