Files
vasilito b9de373b31 Merge bootprocess branch overlay into 0.2.0
Restore all bootprocess branch files that were overwritten by later 0.2.0
commits. This overlay brings back the complete boot infrastructure:

- Configs: redbear-full, redbear-mini, redbear-device-services, driver .d files
- Kernel: IRQ affinity, x2APIC, C-states, NUMA (SLIT/SRAT), MCS locks, cpuidle
- Base patches: P0-P55 + new P6 (lived block_size=512) + P57 (fbbootlogd graceful init)
- Driver infra: driver-manager, udev-shim, thermald, cpufreqd, iommu, redox-driver-sys/core
- GPU: redox-drm with improved connector handling
- System: redbear-info, redbear-hwutils phase-timer-check
- Build system: fetch.rs improvements, build-iso.sh, run_full.sh
- Kernel source: new ACPI (SLIT, SRAT), cpuidle, cstate, MCS lock modules

83 files changed, +3966/-1248 lines
2026-05-27 06:47:23 +03:00

74 lines
1.2 KiB
TOML

# Configuration for the Redoxer image
include = ["base.toml"]
# Package settings
[packages]
bash = {}
ca-certificates = {}
coreutils = {}
extrautils = {}
findutils = {}
gnu-make = {}
ion = {}
pkgutils = {}
relibc = {}
sed = {}
# Override network services for redoxer (foreground dhcpd)
[[files]]
path = "/usr/lib/init.d/10_smolnetd.service"
data = """
[unit]
description = "Network stack for redoxer"
requires_weak = ["00_driver-manager.service"]
[service]
cmd = "netstack"
type = "oneshot_async"
"""
[[files]]
path = "/usr/lib/init.d/10_dhcpd.service"
data = """
[unit]
description = "DHCP client (foreground) for redoxer"
requires_weak = ["10_smolnetd.service"]
[service]
cmd = "dhcpd"
type = "oneshot_async"
"""
[[files]]
path = "/usr/lib/init.d/30_redoxer.service"
data = """
[unit]
description = "Redoxer test runner"
requires_weak = ["10_dhcpd.service"]
[service]
cmd = "ion"
args = ["/usr/lib/run_redoxer.ion"]
type = "oneshot_async"
"""
[[files]]
path = "/usr/lib/run_redoxer.ion"
data = """
#!/usr/bin/env ion
echo
echo "## preparing environment ##"
export GROUPS=0
export HOME=/root
export HOST=redox
export SHELL=/bin/sh
export UID=0
export USER=root
cd /root
env
echo
echo "## running redoxer ##"
redoxerd
"""