f74e711466
PS/2 controller resilience: - DisableFirst/DisableSecond commands now use retry (3 attempts) instead of failing on first timeout - Added 50ms settling delay before first command after firmware handoff - Disable command failures are non-fatal (warn + continue) — a truly absent controller fails later at self-test - ps2d no longer panics on init failure — logs error and continues so the system can still boot to login prompt without PS/2 input Branding overrides: - Added /etc/issue override with Red Bear OS pre-login banner - Added /etc/motd override with Red Bear OS post-login message - Fixes transaction conflict where userutils overwrites redbear-release branding with upstream 'Redox OS' content QEMU verified: boots to login prompt, no service errors
68 lines
1.6 KiB
TOML
68 lines
1.6 KiB
TOML
# Red Bear OS Minimal Configuration
|
|
# Console/Server variant with bare-metal driver support but no GUI
|
|
#
|
|
# Build: make all CONFIG_NAME=redbear-minimal
|
|
|
|
include = ["minimal.toml", "redbear-legacy-base.toml", "redbear-device-services.toml", "redbear-netctl.toml"]
|
|
|
|
[general]
|
|
# Minimal image now includes firmware payloads and Wi-Fi control-plane packages,
|
|
# so the previous 512 MiB image is too small for live ISO assembly.
|
|
filesystem_size = 2048
|
|
|
|
[packages]
|
|
# Red Bear OS branding
|
|
redbear-release = {}
|
|
|
|
# Native Redox PCI/USB listing tools (lspci, lsusb)
|
|
redbear-hwutils = {}
|
|
|
|
# Redox-native netctl compatibility command
|
|
redbear-netctl = {}
|
|
redbear-netctl-console = {}
|
|
|
|
# Native network reporting and connect-scan tools
|
|
redbear-netstat = {}
|
|
redbear-traceroute = {}
|
|
redbear-mtr = {}
|
|
redbear-nmap = {}
|
|
|
|
# Firmware loading + Wi-Fi control plane
|
|
redbear-firmware = {}
|
|
firmware-loader = {}
|
|
redbear-wifictl = {}
|
|
|
|
# Input/runtime service prerequisites
|
|
evdevd = {}
|
|
udev-shim = {}
|
|
|
|
# Terminal file manager
|
|
mc = {}
|
|
|
|
# Diagnostic tool
|
|
redbear-info = {}
|
|
|
|
[[files]]
|
|
path = "/etc/netctl/active"
|
|
data = "wired-dhcp\n"
|
|
|
|
[[files]]
|
|
path = "/etc/issue"
|
|
data = """
|
|
########## Red Bear OS #########
|
|
# Login with the following: #
|
|
# `user` #
|
|
# `root`:`password` #
|
|
################################
|
|
"""
|
|
|
|
[[files]]
|
|
path = "/etc/motd"
|
|
data = """
|
|
Red Bear OS v0.1.0 "Denali" — Built on Redox OS
|
|
Type 'help' for available commands.
|
|
"""
|
|
|
|
# VT/getty/login chain: initfs starts inputd + vesad + fbcond in phase 1,
|
|
# then minimal.toml legacy 30_console runs inputd -A 2 + getty 2 + getty debug.
|