The 2026-07-27 Round 9 cleanup deleted 36 docs (3D-DRIVER-PLAN,
WAYLAND-IMPLEMENTATION-PLAN, DRM-MODERNIZATION-EXECUTION-PLAN,
REDBEAR-FULL-SDDM-BRINGUP, and the entire archived/ and
legacy-obsolete-2026-07-25/ contents) but several active docs still
cross-referenced those deleted files. This commit sweeps the surviving
docs and:
* Replaces every deleted-path reference with the live target:
WAYLAND-IMPLEMENTATION-PLAN.md -> 3D-DESKTOP-COMPREHENSIVE-PLAN.md
3D-DRIVER-PLAN.md -> 3D-DESKTOP-COMPREHENSIVE-PLAN.md
REDBEAR-FULL-SDDM-BRINGUP.md -> 3D-DESKTOP-COMPREHENSIVE-PLAN.md
legacy-obsolete-2026-07-25/DRM... -> 3D-DESKTOP-COMPREHENSIVE-PLAN.md
legacy-obsolete-2026-07-25/IRQ... -> IRQ-AND-LOWLEVEL-...-PLAN.md
archived/UPSTREAM-SYNC-PROCEDURE.md -> removed (sync procedure now in
BUILD-CACHE-PLAN.md +
sync-versions.sh)
archived/RELIBC-IPC-ASSESSMENT-... -> removed (work captured in
KERNEL-IPC-CREDENTIAL-PLAN.md)
archived/DRIVER-MANAGER-MIGRATION-PLAN -> removed (history in DRIVER-MANAGER.md
and git log)
archived/INTEL-HDA-IMPLEMENTATION-PLAN -> removed (track now in 3D-DESKTOP-
COMPREHENSIVE-PLAN.md § SOF/AVS)
* Rewrites pcid-spawner references to driver-manager in PACKAGE-BUILD-QUIRKS,
PATCH-GOVERNANCE, NETWORKING-IMPROVEMENT, LG-GRAM-16Z90TP, and the IRQ plan
status note. The retired pcid-spawner service no longer exists in any
redbear-* config as of the 2026-07-24 cutover.
* Rewrites CONSOLE-TO-KDE-DESKTOP-PLAN.md §9 plan table to point at the
post-Round-9 canonical doc map (3D-DESKTOP-COMPREHENSIVE-PLAN.md as the
single coherent 3D-render plan; IRQ plan at top-level). Drops the
misleading 'archived legacy-obsolete-2026-07-25/' status line and the
'work subsumed by Round 1-5' sentence that was explicitly rejected by
SUPERSEDED-DOC-LOG.
* Updates 3D-DESKTOP-COMPREHENSIVE-PLAN.md §10 to mark the REPLACE, RESTORE,
and DELETE pre-execution audit as completed 2026-07-27. Tables remain as
historical record of what was done, with a pointer to the backup tarballs
and SUPERSEDED.md log.
* Bumps 'Last updated' of CONSOLE-TO-KDE-DESKTOP-PLAN.md to v6.1.
13 files changed, +78/-65.
5.9 KiB
Red Bear OS Patch Governance
Purpose
This document prevents loss of implemented work. It establishes rules that AI agents and human contributors must follow when modifying patches, recipes, or build configs.
Incident: 2026-04-26 Driver Code Loss
A previous agent session removed 8 patches and 9 BINS entries from
recipes/core/base/recipe.toml to make the build succeed, instead of fixing
patch conflicts. This deleted GPIO/I2C/UCSI driver source code that took a full
day to implement (commits dc3f1f996, 3054adc5d).
The code was recovered from git history, but this must never happen again.
Rules
1. Never remove patches to fix build failures
When a patch fails to apply:
- Rebase the patch against the current cumulative state
- Fix the context lines so the hunk applies cleanly
- Split the patch if only some hunks fail (keep the working hunks)
- Document the failure reason in the patch file header
Do NOT remove the patch from the recipe.toml patches list without explicit user approval. If a patch must be temporarily disabled, comment it with a TODO explaining why and what needs to be fixed.
2. Never remove BINS entries to fix build failures
When a driver binary fails to compile:
- Fix the compilation error in the driver source
- Add the driver to EXISTING_BINS filter if source is incomplete
- Document the failure
Do NOT remove the driver from the BINS array without explicit user approval.
3. Patch ordering matters
Patches in recipes/core/base/recipe.toml must be applied in the listed order.
Some patches have interdependencies:
P2-acpi-i2c-resources.patchmust apply beforeP2-daemon-hardening.patch(workspace entries reference source files created by the former)P2-boot-runtime-fixes.patchmodifies hwd/acpi.rs (must apply cleanly to upstream)P2-init-acpid-wiring.patchadds 41_acpid.service and driver-manager retry logic (acpid spawn removal is in P2-boot-runtime-fixes, do NOT duplicate; the historical pcid-spawner retry logic was replaced when pcid-spawner was retired 2026-07-24)
When reordering patches, test the FULL chain: remove source, rebuild, verify.
4. Recipe.toml is tracked, source trees are not
recipes/core/base/recipe.toml is git-tracked. Changes to it are durable.
recipes/core/base/source/ is a fetched working copy — destroyed by make clean,
make distclean, source immutable archived, and provision-release.
Any change to source/ MUST be preserved as a patch in local/patches/base/.
5. Before removing anything, check git history
git log --oneline --all -- <file>
If a previous commit added substantial work (driver implementations, features), the removal MUST be approved by the user. Agent sessions MUST NOT delete implemented work to bypass build failures.
6. Build validation after patch changes
After ANY change to the patches list or patch files:
⚠️ GROSS WARNING — DO NOT run
repo cook,repo fetch, ormake livedirectly. These bypass the canonical build pipeline (apply-patches.shpatch-linking + staleness handling + correct dependency ordering), which causes broken/missing patches and wasted rebuild time. ALWAYS build via./local/scripts/build-redbear.sh [--upstream] <config>(or the documentedmaketargets it drives). If you think you need a single-recipe cook, run the canonical wrapper — it does the right thing and is faster in the end.
- Remove the source tree:
rm -rf recipes/core/base/source - Full rebuild:
REDBEAR_ALLOW_PROTECTED_FETCH=1 CI=1 make r.base - Verify NO "FAILED" or "rejects" in output
- Verify all expected binaries in stage:
ls stage/usr/bin/ stage/usr/lib/drivers/ - Full image build:
./local/scripts/build-redbear.sh redbear-full
Known Issues
| Patch | Status | Notes |
|---|---|---|
| P2-acpid-core-refactor.patch | Needs rebasing | 13/15 hunks fail on acpid/scheme.rs; removed from recipe.toml with TODO |
| P2-acpi-i2c-resources.patch | Recovered & rebased → P2-i2c-gpio-ucsi-drivers.patch | Original couldn't apply to current source revision; extracted driver sources, fixed PCI API calls (try_mem→map_bar, try_map_bar→map_bar), regenerated as P2-i2c-gpio-ucsi-drivers.patch (5938 lines, 32 files) |
| P2-boot-runtime-fixes.patch | Needs rebasing | Context lines from monolith split are stale; hwd/acpi.rs hunk fails on clean upstream |
| P2-init-acpid-wiring.patch | Deduplicated | Removed acpi.rs hunk that duplicated P2-boot-runtime-fixes |
Recipe.toml Fix Log
| Date | Change | Why |
|---|---|---|
| 2026-04-30 | Recovered I2C/GPIO/UCSI drivers | P2-acpi-i2c-resources.patch couldn't apply; regenerated as P2-i2c-gpio-ucsi-drivers.patch (5938 lines, 12 drivers: gpiod, i2cd, amd-mp2-i2cd, dw-acpi-i2cd, intel-lpss-i2cd, i2c-interface, intel-gpiod, i2c-gpio-expanderd, i2c-hidd, intel-thc-hidd, ucsid, acpi-resource) |
| 2026-04-30 | Fixed amd-mp2-i2cd PCI API | .try_mem() removed from PciBar; replaced with PciFunctionHandle::map_bar(0) |
| 2026-04-30 | Fixed intel-thc-hidd PCI API | .try_map_bar() removed from PciFunctionHandle; replaced with .map_bar(0) |
| 2026-04-30 | Added P0-bootstrap-workspace-fix.patch | [workspace] in bootstrap Cargo.toml prevents parent workspace auto-detection; fixes base-initfs from-scratch build |
| 2026-04-30 | Added symlinks to integrate-redbear.sh | P0-bootstrap-workspace-fix.patch and P2-i2c-gpio-ucsi-drivers.patch symlinks now auto-created |
| 2026-04-26 | Restored 8 removed patches | Agent deleted them to bypass conflicts; restored all from git HEAD |
| 2026-04-26 | Restored 9 BINS entries | Agent deleted i2cd, gpiod, ucsid, etc. to bypass missing sources |
| 2026-04-26 | Added EXISTING_BINS grep loop | Gracefully handles missing driver source instead of build failure |
| 2026-04-26 | Fixed grep/find variables | ${GREP} and ${FIND} are unset in redoxer env; use bare grep/find |
| 2026-04-26 | Fixed TOML escaping | \" in TOML triple-quotes becomes " in bash; use \\\" for literal " |