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
This commit is contained in:
2026-04-12 19:05:00 +01:00
commit 50b731f1b7
3392 changed files with 98327 additions and 0 deletions
+10
View File
@@ -0,0 +1,10 @@
#TODO not compiled or tested
# build instructions: https://code.videolan.org/videolan/dav1d#compile
[source]
tar = "https://downloads.videolan.org/videolan/dav1d/1.5.3/dav1d-1.5.3.tar.xz"
shallow_clone = true
[build]
template = "meson"
mesonflags = [
"-Denable_tests=false",
]
+7
View File
@@ -0,0 +1,7 @@
#TODO not compiled or tested
[source]
git = "https://github.com/knik0/faad2"
rev = "2.11.2"
shallow_clone = true
[build]
template = "cmake"
+5
View File
@@ -0,0 +1,5 @@
#TODO compilation error
[source]
tar = "https://github.com/ultravideo/kvazaar/releases/download/v2.2.0/kvazaar-2.2.0.tar.xz"
[build]
template = "configure"
+6
View File
@@ -0,0 +1,6 @@
#TODO "malloc(): invalid size (unsorted)" error
[source]
git = "https://github.com/xiph/rav1e"
shallow_clone = true
[build]
template = "cargo"
+8
View File
@@ -0,0 +1,8 @@
#TODO not compiled or tested
# build instructions: https://gitlab.com/AOMediaCodec/SVT-AV1/-/blob/master/Docs/Build-Guide.md#linux-operating-systems-64-bit
[source]
git = "https://gitlab.com/AOMediaCodec/SVT-AV1"
rev = "v4.0.1"
shallow_clone = true
[build]
template = "cmake"
+7
View File
@@ -0,0 +1,7 @@
#TODO not compiled or tested
# build instructions: https://github.com/OpenVisualCloud/SVT-HEVC#linux-operating-systems-64-bit
[source]
git = "https://github.com/OpenVisualCloud/SVT-HEVC"
shallow_clone = true
[build]
template = "cmake"
+8
View File
@@ -0,0 +1,8 @@
#TODO not compiled or tested
# build instructions: https://github.com/OpenVisualCloud/SVT-VP9#linux-operating-systems-64-bit
[source]
git = "https://github.com/OpenVisualCloud/SVT-VP9"
rev = "v0.3.1"
shallow_clone = true
[build]
template = "cmake"
+11
View File
@@ -0,0 +1,11 @@
#TODO not compiled or tested
# build instructions: https://github.com/ultravideo/uvg266#compiling-uvg266
[source]
git = "https://github.com/ultravideo/uvg266"
rev = "v0.8.1"
shallow_clone = true
[build]
template = "cmake"
cmakeflags = [
"-DBUILD_TESTS=OFF"
]
+8
View File
@@ -0,0 +1,8 @@
#TODO not compiled or tested
# build instructions: https://github.com/fraunhoferhhi/vvenc/wiki/Build#build-using-plain-cmake
[source]
git = "https://github.com/fraunhoferhhi/vvenc"
rev = "v1.14.0"
shallow_clone = true
[build]
template = "cmake"
+8
View File
@@ -0,0 +1,8 @@
#TODO compilation error: missing header
[source]
tar = "https://github.com/dbry/WavPack/releases/download/5.9.0/wavpack-5.9.0.tar.xz"
[build]
template = "configure"
dependencies = [
"libiconv",
]
+7
View File
@@ -0,0 +1,7 @@
#TODO the redox target is not supported on the configure script
[source]
git = "https://code.videolan.org/videolan/x264"
branch = "stable"
shallow_clone = true
[build]
template = "configure"
+11
View File
@@ -0,0 +1,11 @@
#TODO not compiled or tested
# build instructions: https://bitbucket.org/multicoreware/x265_git/src/master/build/README.txt#lines-68
[source]
tar = "https://bitbucket.org/multicoreware/x265_git/downloads/x265_4.1.tar.gz"
[build]
template = "custom"
script = """
COOKBOOK_SOURCE="${COOKBOOK_SOURCE}/source"
DYNAMIC_INIT
cookbook_cmake
"""