50b731f1b7
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
50 lines
2.0 KiB
TOML
50 lines
2.0 KiB
TOML
# Configuration for demonstration
|
|
|
|
include = ["../desktop.toml"]
|
|
|
|
# General settings
|
|
[general]
|
|
# Filesystem size in MiB
|
|
filesystem_size = 768
|
|
|
|
# Package settings
|
|
[packages]
|
|
# Games
|
|
dosbox = {}
|
|
freedoom = {}
|
|
prboom = {}
|
|
redox-games = {}
|
|
|
|
# Demos
|
|
pixelcannon = {}
|
|
|
|
# MIDI
|
|
freepats = {}
|
|
|
|
[[files]]
|
|
path = "/home/user/Welcome.txt"
|
|
data = """
|
|
##############################################################################
|
|
# #
|
|
# Welcome to Red Bear OS! #
|
|
# #
|
|
# Red Bear OS (RBOS) is a derivative of Redox, an operating system written #
|
|
# in Rust, a language with focus on safety and high performance. Redox, #
|
|
# following the microkernel design, aims to be secure, usable, and free. #
|
|
# Redox is inspired by previous kernels and operating systems, such as #
|
|
# SeL4, MINIX, Plan 9, and BSD. #
|
|
# #
|
|
# Red Bear OS _is not_ just a kernel, it's a full-featured Operating System, #
|
|
# providing packages (memory allocator, file system, display manager, core #
|
|
# utilities, etc.) that together make up a functional and convenient #
|
|
# operating system. You can loosely think of it as the GNU or BSD ecosystem, #
|
|
# but in a memory safe language and with modern technology. #
|
|
# #
|
|
# The website can be found at https://github.com/vasilito/Red-Bear-OS-3. #
|
|
# #
|
|
# For things to try on Red Bear OS, please see #
|
|
# https://doc.redox-os.org/book/ch02-06-trying-out-redox.html #
|
|
# #
|
|
##############################################################################
|
|
"""
|