23 lines
915 B
Zig
23 lines
915 B
Zig
//! The acpi service as a binary package (docs/build-packages-plan.md):
|
|
//! this file names the binary and EXACTLY the modules its source imports —
|
|
//! build-support resolves each name from the domains this zon declares.
|
|
//!
|
|
//! The artifact is named "discovery": one swappable process per firmware
|
|
//! fills the ramdisk's neutral `discovery` slot (docs/discovery.md); the
|
|
//! root's -Ddiscovery picks this package or `fdt`.
|
|
|
|
const std = @import("std");
|
|
const build_support = @import("build-support");
|
|
|
|
pub fn build(b: *std.Build) void {
|
|
const exe = build_support.userBinary(b, .{
|
|
.name = "discovery",
|
|
.root_source_file = b.path("acpi.zig"),
|
|
.imports = &.{
|
|
"acpi-ids", "aml", "channel", "device-manager-protocol", "driver", "envelope",
|
|
"ipc", "logging", "memory", "power-protocol", "process", "service", "time",
|
|
},
|
|
});
|
|
b.installArtifact(exe);
|
|
}
|