Files
RedBear-OS/init.initfs.d/40_driver-manager-initfs.service
T
Red Bear OS c72d4247a6 init: cutover — driver-manager owns the boot path, pcid-spawner gated as fallback
- 00_driver-manager.service: resident daemon args (--hotplug); runs
  unless /etc/driver-manager.d/disabled exists.
- 40_driver-manager-initfs.service: gate flipped from opt-in
  (initfs-active) to default-on (!/etc/driver-manager.d/disabled).
- 00_pcid-spawner.service + 40_pcid-spawner-initfs.service: gated to
  start only when /etc/driver-manager.d/disabled exists — the legacy
  spawner remains staged as the operator fallback, never deleted.
2026-07-23 17:51:44 +09:00

22 lines
893 B
Desktop File

# Place this file at:
# local/sources/base/init.initfs.d/40_driver-manager-initfs.service
# (created during D5/C0 phase; remains dormant until operator ratifies cutover)
[unit]
description = "Driver manager initfs spawner"
requires_weak = ["10_inputd.service", "20_graphics.target", "40_pcid.service"]
# Long-form description:
# Driver manager initfs variant. Replaces 40_pcid-spawner-initfs.service
# once the initfs storage path is fully verified under driver-manager
# in dual-mode observation (C1). Storage-critical drivers (ahcid, ided,
# nvmed, virtio-blkd) bind here before redoxfs mounts the rootfs.
[service]
cmd = "driver-manager"
args = ["--initfs"]
type = "oneshot"
# Active by default since the cutover. Operator falls back to the legacy
# pcid-spawner initfs path with:
# touch /etc/driver-manager.d/disabled
ConditionPathExists = "!/etc/driver-manager.d/disabled"