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
25 lines
873 B
Plaintext
25 lines
873 B
Plaintext
mk_add_options MOZ_OBJDIR=COOKBOOK_BUILD
|
|
ac_add_options --target=TARGET
|
|
ac_add_options --disable-debug
|
|
ac_add_options --disable-tests
|
|
ac_add_options --disable-audio-backends
|
|
ac_add_options --disable-crashreporter
|
|
ac_add_options --disable-updater
|
|
ac_add_options --disable-dbus
|
|
ac_add_options --disable-gecko-profiler
|
|
ac_add_options --disable-profiling
|
|
ac_add_options --disable-dmd # dark matter detector
|
|
ac_add_options --without-wasm-sandboxed-libraries # need clang wasi
|
|
|
|
# TODO: cairo-gtk3-x11-wayland or separate cairo-gtk3-wayland-only
|
|
ac_add_options --enable-default-toolkit=cairo-gtk3-x11-only
|
|
ac_add_options --enable-bootstrap=-clang # only use our clang
|
|
ac_add_options --enable-optimize
|
|
ac_add_options --with-system-nspr
|
|
ac_add_options --with-gl-provider=EGL
|
|
|
|
export MOZ_REQUIRE_SIGNING=
|
|
export MOZ_TELEMETRY_REPORTING=
|
|
export CC="TARGET_CC"
|
|
export CXX="TARGET_CXX"
|