51f3c21121
Ultraworked with [Sisyphus](https://github.com/code-yeongyu/oh-my-openagent) Co-authored-by: Sisyphus <clio-agent@sisyphuslabs.ai>
67 lines
1.1 KiB
TOML
67 lines
1.1 KiB
TOML
# AMD Desktop Configuration — Phase 2: AMD GPU Display
|
|
# Builds on top of desktop config with AMD GPU support
|
|
#
|
|
# Phases completed:
|
|
# P1: redox-driver-sys, linux-kpi, firmware-loader ✅
|
|
# P2: redox-drm, amdgpu (modesetting only) ← YOU ARE HERE
|
|
|
|
include = ["desktop.toml"]
|
|
|
|
[general]
|
|
filesystem_size = 8196
|
|
|
|
[packages]
|
|
# AMD GPU driver stack — Phase 1 infrastructure
|
|
redox-driver-sys = {}
|
|
linux-kpi = {}
|
|
firmware-loader = {}
|
|
|
|
# AMD GPU — Phase 2: Display output
|
|
redox-drm = {}
|
|
amdgpu = {}
|
|
|
|
# Input (Phase 3)
|
|
evdevd = {}
|
|
udev-shim = {}
|
|
|
|
# Wayland (Phase 4 — depends on P2+P3)
|
|
# libwayland = {}
|
|
# wayland-protocols = {}
|
|
# smallvil = {}
|
|
# mesa = {}
|
|
# libdrm = {}
|
|
|
|
# KDE (Phase 6)
|
|
# qtbase = {}
|
|
# qtwayland = {}
|
|
# kwin = {}
|
|
# plasma-workspace = {}
|
|
|
|
# Files to include
|
|
[[files]]
|
|
path = "/usr/firmware/amdgpu"
|
|
data = ""
|
|
directory = true
|
|
mode = 0o755
|
|
|
|
[[files]]
|
|
path = "/usr/lib/init.d/05_firmware"
|
|
data = """
|
|
requires_weak 00_drivers
|
|
nowait firmware-loader
|
|
"""
|
|
|
|
[[files]]
|
|
path = "/usr/lib/init.d/10_evdevd"
|
|
data = """
|
|
requires_weak 00_drivers
|
|
nowait evdevd
|
|
"""
|
|
|
|
[[files]]
|
|
path = "/usr/lib/init.d/11_udev"
|
|
data = """
|
|
requires_weak 00_drivers
|
|
nowait udev
|
|
"""
|