326df7f02d
- base-initfs recipe: pcid-spawner removed from initfs BINS and the
lib/pcid.d initfs staging dropped (dead pcid-spawner config).
- acid.toml, redoxer.toml: requires_weak now points at
00_driver-manager.service.
- redbear-mini.toml: dead /etc/pcid.d/* staging removed; driver-manager
service override no longer gated on the retired fallback flag.
- redbear-full.toml: dead legacy-format /etc/pcid.d/ihdgd.toml and
virtio-gpud.toml removed (driver-manager's 30-graphics.toml covers
the same drivers in the current format).
- Comments updated: no fallback exists; driver-manager owns the path
unconditionally. Base submodule bump (0c11c2b5).
38 lines
577 B
TOML
38 lines
577 B
TOML
# Configuration for "acid" testing
|
|
|
|
include = ["base.toml"]
|
|
|
|
# General settings
|
|
[general]
|
|
# Filesystem size in MiB
|
|
filesystem_size = 1024
|
|
|
|
# Package settings
|
|
[packages]
|
|
acid = {}
|
|
coreutils = {}
|
|
ion = {}
|
|
|
|
[[files]]
|
|
path = "/usr/lib/init.d/10_acid.service"
|
|
data = """
|
|
[unit]
|
|
description = "Acid test runner"
|
|
requires_weak = ["00_driver-manager.service"]
|
|
|
|
[service]
|
|
cmd = "ion"
|
|
args = ["/usr/lib/run_acid.ion"]
|
|
type = "oneshot_async"
|
|
"""
|
|
|
|
[[files]]
|
|
path = "/usr/lib/run_acid.ion"
|
|
data = """
|
|
#!/usr/bin/env ion
|
|
export RUST_BACKTRACE=full
|
|
cd /home/user/acid
|
|
cargo test
|
|
shutdown
|
|
"""
|