danos/library
Daniel Samson 37326c7664
C5: delete the runtime.zig and system.zig compatibility shims
With every consumer migrated (C2), nothing imports `runtime` or `system` any
longer. Removed both shim files and their build.zig module definitions, dropped
the `runtime` entry from `default_imports`, and rewrote the per-binary root shim
(library/kernel/root.zig) to import `start` (_start + panic) and `logging`
(std_options) directly instead of through `runtime`.

addUserBinary/addThreadedUserBinary/addUserBinaryImpl lose their `runtime_module`
parameter; the root module now pulls the two modules it needs out of
`default_imports` via a small findImport helper.

The runtime dumping ground is gone: the userspace library is library/kernel
(concern modules), library/device (driver/pci/usb/block/model/mmio/acpi data),
library/client (display, input service clients), and library/protocol (wire
contracts). Consumers @import concern modules by name.

Verified: zig build, zig build test, and QEMU (smoke, thread-spawn, thread-mutex,
logger, display-native, device-manager, usb-storage, input).
2026-07-22 23:32:05 +01:00
..
client reorg: relocate device/service clients (C3/C4) 2026-07-22 23:02:04 +01:00
device C2: migrate consumers off the runtime shim to direct concern-module imports 2026-07-22 23:28:34 +01:00
kernel C5: delete the runtime.zig and system.zig compatibility shims 2026-07-22 23:32:05 +01:00
protocol reorg: docs — library/device/ + library/protocol/ structure 2026-07-22 21:09:48 +01:00
xkeyboard-config Add xkeyboard-config: X11 keyboard layouts compiled to Zig 2026-07-11 15:57:09 +01:00