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:
@@ -0,0 +1,5 @@
|
||||
#TODO missing script for gnu make: https://github.com/mcmilk/7-Zip/tree/master/DOC#readme
|
||||
[source]
|
||||
tar = "https://7-zip.org/a/7z2301-src.tar.xz"
|
||||
[build]
|
||||
template = "custom"
|
||||
@@ -0,0 +1,5 @@
|
||||
#TODO compiled but not tested
|
||||
[source]
|
||||
tar = "https://download.savannah.gnu.org/releases/lzip/lzip-1.24.1.tar.gz"
|
||||
[build]
|
||||
template = "configure"
|
||||
@@ -0,0 +1,10 @@
|
||||
#TODO compiled but not tested
|
||||
[source]
|
||||
git = "https://github.com/ANSSI-FR/MLA"
|
||||
shallow_clone = true
|
||||
[build]
|
||||
template = "custom"
|
||||
script = """
|
||||
DYNAMIC_INIT
|
||||
cookbook_cargo_packages mlar
|
||||
"""
|
||||
@@ -0,0 +1,6 @@
|
||||
#TODO don't run
|
||||
[source]
|
||||
git = "https://github.com/richox/orz"
|
||||
shallow_clone = true
|
||||
[build]
|
||||
template = "cargo"
|
||||
@@ -0,0 +1,11 @@
|
||||
#TODO compilation error
|
||||
[source]
|
||||
git = "https://github.com/ouch-org/ouch"
|
||||
shallow_clone = true
|
||||
[build]
|
||||
template = "cargo"
|
||||
dependencies = [
|
||||
"zlib",
|
||||
"bzip2",
|
||||
"xz",
|
||||
]
|
||||
@@ -0,0 +1,8 @@
|
||||
#TODO missing headers
|
||||
[source]
|
||||
tar = "https://download.savannah.gnu.org/releases/lzip/plzip/plzip-1.11.tar.gz"
|
||||
[build]
|
||||
template = "configure"
|
||||
dependencies = [
|
||||
"lzlib",
|
||||
]
|
||||
@@ -0,0 +1,9 @@
|
||||
#TODO make zstd work (after cargo update)
|
||||
[source]
|
||||
git = "https://github.com/quininer/unzrip"
|
||||
shallow_clone = true
|
||||
[build]
|
||||
template = "cargo"
|
||||
dependencies = [
|
||||
"zstd",
|
||||
]
|
||||
Reference in New Issue
Block a user