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
13 lines
627 B
Diff
13 lines
627 B
Diff
diff -ruwN source-old/meson.build source/meson.build
|
|
--- source-old/meson.build 2025-11-16 10:35:59.000000000 -0700
|
|
+++ source/meson.build 2025-12-11 15:29:28.845861423 -0700
|
|
@@ -68,7 +68,7 @@
|
|
elif libdrm.type_name() == 'internal'
|
|
fourcc_h = meson.current_source_dir() / 'subprojects/libdrm/include/drm/drm_fourcc.h'
|
|
else
|
|
- fourcc_h = libdrm.get_variable(pkgconfig: 'pc_sysrootdir') + libdrm.get_variable(pkgconfig: 'includedir') / 'libdrm/drm_fourcc.h'
|
|
+ fourcc_h = libdrm.get_variable(pkgconfig: 'includedir') / 'libdrm/drm_fourcc.h'
|
|
endif
|
|
|
|
# The DRM_BUS_FAUX bus and its information is included in libdrm v2.4.127
|