mirror of
https://github.com/reactos/reactos.git
synced 2025-04-05 05:01:03 +00:00
[CMAKE][BOOTDATA] Fix LiveCD does not import caroots.inf into registry CORE-17739 CORE-17735 (#3930)
It regressed by 0.4.9-dev-82-g 6158207c31
KVM https://reactos.org/testman/compare.php?ids=78729,78730 LGTM
VBox https://reactos.org/testman/compare.php?ids=78728,78731 LGTM
This commit is contained in:
parent
a8d2cd4b9d
commit
2268b33e18
2 changed files with 3 additions and 2 deletions
|
@ -9,7 +9,7 @@ add_custom_target(converted_caroots_inf DEPENDS ${CMAKE_CURRENT_BINARY_DIR}/caro
|
|||
add_custom_command(OUTPUT ${CMAKE_CURRENT_BINARY_DIR}/caroots.inf
|
||||
COMMAND native-utf16le "${CMAKE_CURRENT_SOURCE_DIR}/caroots.inf" "${CMAKE_CURRENT_BINARY_DIR}/caroots.inf"
|
||||
DEPENDS native-utf16le ${CMAKE_CURRENT_SOURCE_DIR}/caroots.inf)
|
||||
add_cd_file(TARGET converted_caroots_inf FILE ${CMAKE_CURRENT_BINARY_DIR}/caroots.inf DESTINATION reactos NO_CAB FOR all)
|
||||
add_cd_file(TARGET converted_caroots_inf FILE ${CMAKE_CURRENT_BINARY_DIR}/caroots.inf DESTINATION reactos NO_CAB FOR bootcd regtest)
|
||||
|
||||
add_registry_inf(
|
||||
hivecls.inf
|
||||
|
|
|
@ -794,7 +794,8 @@ 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/livecd.inf
|
||||
${CMAKE_SOURCE_DIR}/boot/bootdata/caroots.inf)
|
||||
if(SARCH STREQUAL "xbox")
|
||||
list(APPEND _livecd_inf_files
|
||||
${CMAKE_SOURCE_DIR}/boot/bootdata/hiveinst_xbox.inf)
|
||||
|
|
Loading…
Reference in a new issue