29 lines
1.4 KiB
Zig
29 lines
1.4 KiB
Zig
//! init (PID 1) as a binary package (docs/build-packages-plan.md): this file
|
|
//! names the binary and EXACTLY the modules its source imports — the shared
|
|
//! recipe resolves each name from the domains the zon declares. The root build
|
|
//! consumes the artifact for the boot image and forwards its -Dserial here.
|
|
|
|
const std = @import("std");
|
|
const build_support = @import("build-support");
|
|
|
|
pub fn build(b: *std.Build) void {
|
|
const exe = build_support.userBinary(b, .{
|
|
.name = "init",
|
|
.root_source_file = b.path("init.zig"),
|
|
.imports = &.{
|
|
"csv", "envelope", "file-system", "ipc", "logging", "memory", "power-protocol",
|
|
"process", "time", "vfs-protocol",
|
|
},
|
|
});
|
|
// init reads the same `serial` flag the kernel does: its liveness heartbeat
|
|
// is a serial/test-build diagnostic (the QEMU harness's init tests assert
|
|
// on it, and -Dserial images emit it), so a flashable image runs a purely
|
|
// event-driven PID 1 that wakes only for real work. The root build forwards
|
|
// its top-level -Dserial as this dependency option.
|
|
const serial = b.option(bool, "serial", "Compile the serial liveness heartbeat in (forwarded from the root -Dserial)") orelse false;
|
|
const init_options = b.addOptions();
|
|
init_options.addOption(bool, "serial", serial);
|
|
build_support.programModule(exe).addImport("build_options", init_options.createModule());
|
|
b.installArtifact(exe);
|
|
}
|