Skip to content
Technology How it works Breeder — Hyperion Burner — Aegis Burner — MetroVolt AI-Native Architecture Magnets Fuel cycle Safety Roadmap
Solutions AI & Data Centers Defense & Government Grid & Baseload Neutron Detection Quantum
Learn Technical Library
Proof Publications Whitepapers Technical Library Open Science & Reproducibility The Honest Gates
Company About / Mission Leadership Environment Health & Safety Investors Careers Press Contact
3D Model
AI Architecture › Security & Zero-Trust
Security & Zero-Trust

Firmware Signing and Secure Update

Firmware and control artifacts are signed, version-monotonic, and delivered through the gated import path, so only authorized, non-rollback updates ever reach the machine.

STRATEGY / SLOW ▲ ▼ MICROSECOND REAL-TIMEL7Ecosystem & Strategytelemetry ▲ control ▼open ▸L6Experience & Visualizationtelemetry ▲ control ▼open ▸L5Applications & Copilotstelemetry ▲ control ▼open ▸L4Orchestrationtelemetry ▲ control ▼open ▸L3Twin Modeling & AItelemetry ▲ control ▼open ▸L2Data Fabrictelemetry ▲ control ▼open ▸L1Control Planetelemetry ▲ control ▼open ▸L0Foundationtelemetry ▲ control ▼open ▸PHYSICAL S.M.A.R.T. GENERATOR PLANTBREEDER · HYPERION1R0 1.2 m · A 2.5 · 16.84 T · δ −0.30BURNER · TANDEM MIRROR2317 T throat · 26.49 T plug · fₙ 5.44% · DEC1 center stack + plasma · 2 high-field plug · 3 expander → direct converterCOLOR GRAMMAR strategy AI-workflow infra/data models reactor/DECLINE SEMANTICStelemetry (µs)controlKRONOS FUSION ENERGYAI-NATIVE S.M.A.R.T. GENERATORMASTER BLUEPRINTSHEET 01REV. 2026-08L0-L7 · 2 MACHINES
The AI-Native S.M.A.R.T. Generator Master Blueprint — eight layers (L0→L7), one control stack, wired to both machines. Telemetry rises in microseconds; control descends the same path.

Updates are a privileged, rare event

Updating firmware on a control FPGA is one of the highest-consequence routine operations in the plant: it changes what runs on the actuation path. Kronos makes updates infrequent, signed, verified at load, monotonic in version, and delivered only through the controlled air-gap bridge under two-person control. There is no over-the-internet auto-update to OT.

The update pipeline

Rollback protection

python
# Refuse older versions even if validly signed (anti-rollback)
def apply_update(img):
    if not verify_firmware_sig(img):        return REJECT
    if img.version <= device.current_version: return REJECT   # monotonic
    if not import_ceremony_ok(img):          return REJECT   # 2-person + diode
    stage_and_reboot(img)                    # secure boot re-verifies on start

Why monotonicity matters

A validly signed but older firmware may contain a known vulnerability. Without a monotonic version check, an attacker could downgrade to that version and exploit it - a valid signature is not the same as a safe artifact. Kronos blocks downgrades at both apply time and boot time.

Design status: signing, monotonic checks, and the ceremony-gated pipeline run in the twin and staging. Production firmware keys and the physical import station are FOAK build scope; no live reactor firmware update has occurred.

Content reviewed August 2026 · design-and-simulation stage