3a0349f0d9
Ultraworked with [Sisyphus](https://github.com/code-yeongyu/oh-my-openagent) Co-authored-by: Sisyphus <clio-agent@sisyphuslabs.ai>
61 lines
1.1 KiB
TOML
61 lines
1.1 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]
|
|
filesystem_size = 512
|
|
|
|
[packages]
|
|
# Red Bear OS branding
|
|
redbear-release = {}
|
|
|
|
# Native Redox PCI/USB listing tools (lspci, lsusb)
|
|
redbear-hwutils = {}
|
|
|
|
# Redox-native netctl compatibility command
|
|
redbear-netctl = {}
|
|
|
|
# Terminal file manager
|
|
mc = {}
|
|
|
|
# Diagnostic tool
|
|
redbear-info = {}
|
|
|
|
# minimal.toml: "inputd -A 2", "nowait getty 2", "nowait getty /scheme/debug/no-preserve -J"
|
|
[[files]]
|
|
path = "/usr/lib/init.d/30_console"
|
|
data = ""
|
|
|
|
[[files]]
|
|
path = "/usr/lib/init.d/30_console.service"
|
|
data = """
|
|
[unit]
|
|
description = "Console terminals"
|
|
requires_weak = [
|
|
"10_net.target",
|
|
]
|
|
|
|
[service]
|
|
cmd = "getty"
|
|
args = ["2"]
|
|
type = "oneshot_async"
|
|
"""
|
|
|
|
[[files]]
|
|
path = "/usr/lib/init.d/31_debug_console.service"
|
|
data = """
|
|
[unit]
|
|
description = "Debug console"
|
|
requires_weak = [
|
|
"10_net.target",
|
|
]
|
|
|
|
[service]
|
|
cmd = "getty"
|
|
args = ["/scheme/debug/no-preserve", "-J"]
|
|
type = "oneshot_async"
|
|
"""
|