112 wires and counting

$ follow Linux

Keep up with Linux in about 3 minutes: what actually shipped — the commits, pull requests, releases, and security advisories that matter.

or

fair warning: these emails are deeply technical. diffs, version numbers, CVEs, benchmark deltas. if that's not your idea of a good read, this isn't your newsletter.

Folds into your digest — weekly by default, monthly if you prefer. Unsubscribe in one click.

$ status

wire 2026-09-03
stories 6

© 2026 RepoJournal Home Showcase Explore How it works Privacy

$ the-wire · showcase

randstruct off with Rust, Hermes probe and keepLoaded fixes

By RepoJournal · Filed · About Linux

Linux's rc2 pulls a hardening fix that disables randstruct when Rust is enabled, and two Omarchy lifecycle bugs could lock sessions or stall installs.

The upstream kernel merged a hardening fix for the 7.3 release cycle [1]. The change defaults randstruct to off when Rust is enabled, which Mark Brown's commit says improves allmodconfig coverage. Used to be that both enabled could break such builds; now they can coexist.

Basecamp's Omarchy fixes two lifecycle bugs. The Hermes CLI readiness probe keyed on a flag no release ever carried. `hermes_prompt_ready` grepped `hermes chat --help` for `--oneshot`, but that flag only lived at the top level through v0.20.6; `chat` only gained its own in v0.21.0. A fully bootstrapped install therefore read as not ready on every release in circulation, so `--check` failed forever and the default-agent flow looped back into the prompt [2]. The teardown guide also misled: "a failed `--remove` told the user to run it again" even though `rm -f` had usually removed the marked stub, so the advice could never work. The fix spells out the three commands that finish the job by hand [3].

Separately, `keepLoaded` was documented in `omarchy.lock` but only enforced for summoned panels. `reloadPlugins()` still called `unloadPluginServices()`, which `destroy()`ed every service including the lock client. If an installed plugin file changes while the session is locked (a bar widget hot-reload suffices), the shell tears down `WlSessionLock` while Hyprland keeps the session locked and shows the crashed-lockscreen fallback. A fixture service now proves the instance survives a rescan [4].

Quick answers

What shipped in Linux on September 3, 2026?
Linux's rc2 pulls a hardening fix that disables randstruct when Rust is enabled, and two Omarchy lifecycle bugs could lock sessions or stall installs. In total, 4 commits and 2 pull requests landed.
Who contributed to Linux on September 3, 2026?
3 developers shipped this update, including Linus Torvalds, spencerbull, and barmstrong.
What were the notable Linux updates?
Merge tag 'hardening-v7.3-rc2' of git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux, Fix the Hermes CLI readiness probe, and tear the CLI down on uninstall, and Say how to finish a failed teardown, and record the probe's real history.