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,46 @@
|
||||
#TODO needs encoding data: https://poppler.freedesktop.org/poppler-data-0.4.12.tar.gz
|
||||
[source]
|
||||
tar = "https://poppler.freedesktop.org/poppler-25.08.0.tar.xz"
|
||||
blake3 = "0732ef20594d084ae3c24cb75079a2be347df78acac80fdcbd6149b8dce197d4"
|
||||
script = """
|
||||
autotools_recursive_regenerate
|
||||
"""
|
||||
|
||||
[build]
|
||||
template = "custom"
|
||||
dependencies = [
|
||||
"cairo",
|
||||
"curl",
|
||||
"expat",
|
||||
"fontconfig",
|
||||
"freetype2",
|
||||
"gettext",
|
||||
"glib",
|
||||
"libffi",
|
||||
"libiconv",
|
||||
"libjpeg",
|
||||
"libpng",
|
||||
"libx11",
|
||||
"libxau",
|
||||
"libxcb",
|
||||
"nghttp2",
|
||||
"openssl1",
|
||||
"pcre2",
|
||||
"pixman",
|
||||
#TODO: compile dylib "libtiff",
|
||||
"zlib",
|
||||
]
|
||||
script = """
|
||||
DYNAMIC_INIT
|
||||
cookbook_cmake \
|
||||
-DCMAKE_C_FLAGS="-I${COOKBOOK_SYSROOT}/include" \
|
||||
-DCMAKE_CXX_FLAGS="-I${COOKBOOK_SYSROOT}/include" \
|
||||
-DENABLE_BOOST=OFF \
|
||||
-DENABLE_GPGME=OFF \
|
||||
-DENABLE_LCMS=OFF \
|
||||
-DENABLE_LIBOPENJPEG=none \
|
||||
-DENABLE_LIBTIFF=OFF \
|
||||
-DENABLE_QT5=OFF \
|
||||
-DENABLE_QT6=OFF \
|
||||
-DENABLE_NSS3=OFF
|
||||
"""
|
||||
Reference in New Issue
Block a user