Files
RedBear-OS/local/recipes/system/redbear-meta/recipe.toml
T

65 lines
2.1 KiB
TOML

# Red Bear OS Meta Package
# Umbrella package that depends on all Red Bear OS core components.
# Installing this package pulls in the complete Red Bear OS stack.
#
# Components:
# - redbear-release: Branding and identity (os-release, hostname, motd)
# - redox-driver-sys: Safe Rust driver infrastructure crate
# - linux-kpi: Linux Kernel Programming Interface compatibility layer
# - redbear-iwlwifi: bounded Intel Wi-Fi driver-side package
# - redbear-firmware: Linux-firmware-derived firmware bundle
# - firmware-loader: firmware loading daemon used by GPU and Wi-Fi bring-up
# - redbear-wifictl: Wi-Fi control daemon and scheme
# - redox-drm: DRM display driver (AMD + Intel)
# - amdgpu: AMD display-core backend shared library for redox-drm
# - evdevd: Event device daemon (input translation)
# - udev-shim: udev-compatible device enumeration shim
[source]
path = "source"
[build]
template = "custom"
script = """
# Meta package — no compilation needed
# All work is done by dependencies
mkdir -p "${COOKBOOK_STAGE}/usr/share/doc/redbear-meta"
cat > "${COOKBOOK_STAGE}/usr/share/doc/redbear-meta/README" << 'README'
Red Bear OS Meta Package
========================
This package depends on all core Red Bear OS components.
Installed components:
- redbear-release: OS branding and identity
- redox-driver-sys: Driver infrastructure
- linux-kpi: Linux kernel API compatibility
- redbear-iwlwifi: Intel Wi-Fi driver-side package
- redbear-firmware: Firmware bundle
- firmware-loader: firmware daemon
- redbear-wifictl: Wi-Fi control plane
- redox-drm: DRM display driver (AMD + Intel)
- amdgpu: AMD display-core backend shared library
- evdevd: Input event translation
- udev-shim: Device enumeration
Build: make all CONFIG_NAME=redbear-desktop
README
"""
[package]
# These are cookbook-level dependencies — the build system
# will ensure all of these are built and staged before this package
dependencies = [
"redbear-release",
"redox-driver-sys",
"linux-kpi",
"redbear-iwlwifi",
"redbear-firmware",
"redox-drm",
"amdgpu",
"firmware-loader",
"redbear-wifictl",
"evdevd",
"udev-shim",
]