Files
jsix_import/src/user/srv.init/init.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

19 lines
423 B
Python

# vim: ft=python
init = module("srv.init",
target = "init",
deps = [ "libc", "elf", "bootproto", "zstd", "acpi", "pci" ],
static = True,
description = "Init server",
ld_script = "init.ld",
sources = [
"device_manager.cpp",
"initfs.cpp",
"j6romfs.cpp",
"loader.cpp",
"main.cpp",
"modules.cpp",
"service_locator.cpp",
"start.s",
])