mirror of
https://github.com/reactos/reactos.git
synced 2025-07-31 08:42:05 +00:00
[CMAKE][BOOTDATA] Properly load Xbox video miniport driver in LiveCD (#2325)
Surprisingly this also happens to "fix" random "Invalid Opcode" exceptions in XQEMU. (But I think it's more like a coincidence... --hbelusca) CORE-16627 CORE-16216
This commit is contained in:
parent
4788676671
commit
988f979139
2 changed files with 27 additions and 2 deletions
|
@ -853,8 +853,14 @@ function(create_registry_hives)
|
|||
# LiveCD hives
|
||||
list(APPEND _livecd_inf_files
|
||||
${_registry_inf}
|
||||
${CMAKE_SOURCE_DIR}/boot/bootdata/livecd.inf
|
||||
${CMAKE_SOURCE_DIR}/boot/bootdata/hiveinst.inf)
|
||||
${CMAKE_SOURCE_DIR}/boot/bootdata/livecd.inf)
|
||||
if(SARCH STREQUAL "xbox")
|
||||
list(APPEND _livecd_inf_files
|
||||
${CMAKE_SOURCE_DIR}/boot/bootdata/hiveinst_xbox.inf)
|
||||
else()
|
||||
list(APPEND _livecd_inf_files
|
||||
${CMAKE_SOURCE_DIR}/boot/bootdata/hiveinst.inf)
|
||||
endif()
|
||||
|
||||
add_custom_command(
|
||||
OUTPUT ${CMAKE_BINARY_DIR}/boot/bootdata/system
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue