https://git.reactos.org/?p=reactos.git;a=commitdiff;h=5471363801a2faf160579…
commit 5471363801a2faf160579615e663e18a4e5c206d
Author: Stanislav Motylkov <x86corez(a)gmail.com>
AuthorDate: Thu May 26 02:48:39 2022 +0300
Commit: Stanislav Motylkov <x86corez(a)gmail.com>
CommitDate: Fri May 27 18:54:20 2022 +0300
[XBOXVMP] Fix video driver settings
- Store settings in non hardware-profile registry key.
- This makes Xbox video driver working again.
Addendum to f03750de. CORE-16216
---
win32ss/drivers/miniport/xboxvmp/xboxvmp_reg.inf | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/win32ss/drivers/miniport/xboxvmp/xboxvmp_reg.inf b/win32ss/drivers/miniport/xboxvmp/xboxvmp_reg.inf
index e7c2a3c5fdf..43d659323e8 100644
--- a/win32ss/drivers/miniport/xboxvmp/xboxvmp_reg.inf
+++ b/win32ss/drivers/miniport/xboxvmp/xboxvmp_reg.inf
@@ -7,7 +7,7 @@ HKLM,"SYSTEM\CurrentControlSet\Services\XboxVmp","Start",0x00010001,0x00000004
HKLM,"SYSTEM\CurrentControlSet\Services\XboxVmp","Type",0x00010001,0x00000001
HKLM,"SYSTEM\CurrentControlSet\Enum\PCI\VEN_10DE&DEV_02A0&SUBSYS_00000000&REV_A1\0000","Service",0x00000000,"XboxVmp"
-HKLM,"SYSTEM\CurrentControlSet\Hardware Profiles\Current\System\CurrentControlSet\Services\XboxVmp\Device0","InstalledDisplayDrivers",0x00010000,"framebuf"
+HKLM,"SYSTEM\CurrentControlSet\Services\XboxVmp\Device0","InstalledDisplayDrivers",0x00010000,"framebuf"
; This is not true but it allows to use 3rd party drivers while having the XboxVmp driver installed
-HKLM,"SYSTEM\CurrentControlSet\Hardware Profiles\Current\System\CurrentControlSet\Services\XboxVmp\Device0","VgaCompatible",0x00010001,1
+HKLM,"SYSTEM\CurrentControlSet\Services\XboxVmp\Device0","VgaCompatible",0x00010001,1
https://git.reactos.org/?p=reactos.git;a=commitdiff;h=a5a6101ca03514c292dc1…
commit a5a6101ca03514c292dc1d2c0cc8d9145c223627
Author: Victor Perevertkin <victor.perevertkin(a)reactos.org>
AuthorDate: Fri May 27 01:48:52 2022 +0300
Commit: Victor Perevertkin <victor.perevertkin(a)reactos.org>
CommitDate: Fri May 27 01:48:52 2022 +0300
[CMAKE] Fix buildbot builders
---
CMakeLists.txt | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/CMakeLists.txt b/CMakeLists.txt
index 2b05726a694..63353f0c58b 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -76,7 +76,8 @@ add_definitions(
# There doesn't seem to be a standard for __FILE__ being relative or absolute, so detect it at runtime.
file(RELATIVE_PATH _PATH_PREFIX ${REACTOS_BINARY_DIR} ${REACTOS_SOURCE_DIR})
-if (NOT MSVC AND (CMAKE_C_COMPILER_ID STREQUAL "GNU" OR CMAKE_C_COMPILER_ID STREQUAL "Clang"))
+if (NOT MSVC AND ((CMAKE_C_COMPILER_ID STREQUAL "GNU") AND (CMAKE_C_COMPILER_VERSION VERSION_GREATER_EQUAL "8.0.0")
+ OR (CMAKE_C_COMPILER_ID STREQUAL "Clang") AND (CMAKE_C_COMPILER_VERSION VERSION_GREATER_EQUAL "10.0.0")))
# Thankfully, GCC has this
add_compile_options(-ffile-prefix-map=${REACTOS_SOURCE_DIR}=)
add_compile_options(-ffile-prefix-map=${_PATH_PREFIX}=)