Files
RedBear-OS/config/redbear-full.toml
T
vasilito 50b731f1b7 Red Bear OS — microkernel OS in Rust, based on Redox
Derivative of Redox OS (https://www.redox-os.org) adding:
- AMD GPU driver (amdgpu) via LinuxKPI compat layer
- ext4 filesystem support (ext4d scheme daemon)
- ACPI fixes for AMD bare metal (x2APIC, DMAR, IVRS, MCFG)
- Custom branding (hostname, os-release, boot identity)

Build system is full upstream Redox with RBOS overlay in local/.
Patches for kernel, base, and relibc are symlinked from local/patches/
and protected from make clean/distclean. Custom recipes live in
local/recipes/ with symlinks into the recipes/ search path.

Build:  make all CONFIG_NAME=redbear-full
Sync:   ./local/scripts/sync-upstream.sh
2026-04-12 19:05:00 +01:00

36 lines
919 B
TOML

# Red Bear OS Full Configuration
# Complete desktop + RBOS branding + ext4 + input drivers
# Note: GPU drivers (redox-driver-sys, linux-kpi, redox-drm, amdgpu)
# are not included because they need custom build templates.
# Build them separately with: ./local/scripts/build-amd.sh
#
# Build: make all CONFIG_NAME=redbear-full
# Live: make live CONFIG_NAME=redbear-full
include = ["desktop.toml"]
[general]
# 2GB filesystem — plenty for full desktop + headroom
filesystem_size = 2048
[packages]
# Red Bear OS branding (os-release, hostname, motd)
redbear-release = {}
# ext4 filesystem support (our custom port)
ext4d = {}
# Firmware loading
firmware-loader = {}
# Input layer
evdevd = {}
udev-shim = {}
# RBOS meta-package (dependencies, default config)
redbear-meta = {}
# Workaround: bash fails to cross-compile (upstream mkbuiltins.c issue)
# ion (from minimal) is the default shell anyway
bash = "ignore"