mirror of
https://github.com/reactos/reactos.git
synced 2024-12-28 10:04:49 +00:00
[BOOTDATA]
Fix autorun.inf on LiveCD and HybridCD linking to a non existent welcome.exe. HybridCD now links to the correct folder to welcome.exe and LiveCD just opens the readme.txt https://www.reactos.org/forum/viewtopic.php?f=2&t=15406 svn path=/trunk/; revision=71342
This commit is contained in:
parent
d2a7e3aea8
commit
4cc03bbf01
4 changed files with 9 additions and 1 deletions
|
@ -18,7 +18,9 @@ add_registry_inf(
|
||||||
add_cd_file(FILE ${CMAKE_CURRENT_SOURCE_DIR}/bootcdregtest/regtest.cmd DESTINATION reactos/bin FOR all)
|
add_cd_file(FILE ${CMAKE_CURRENT_SOURCE_DIR}/bootcdregtest/regtest.cmd DESTINATION reactos/bin FOR all)
|
||||||
|
|
||||||
#autorun.inf
|
#autorun.inf
|
||||||
add_cd_file(FILE ${CMAKE_CURRENT_SOURCE_DIR}/autorun.inf DESTINATION root NO_CAB NOT_IN_HYBRIDCD FOR all hybridcd)
|
add_cd_file(FILE ${CMAKE_CURRENT_SOURCE_DIR}/autorun-bootcd.inf DESTINATION root NO_CAB NOT_IN_HYBRIDCD NAME_ON_CD autorun.inf FOR bootcd)
|
||||||
|
add_cd_file(FILE ${CMAKE_CURRENT_SOURCE_DIR}/autorun-livecd.inf DESTINATION root NO_CAB NOT_IN_HYBRIDCD NAME_ON_CD autorun.inf FOR livecd)
|
||||||
|
add_cd_file(FILE ${CMAKE_CURRENT_SOURCE_DIR}/autorun-hybridcd.inf DESTINATION root NO_CAB NOT_IN_HYBRIDCD NAME_ON_CD autorun.inf FOR hybridcd)
|
||||||
|
|
||||||
#icon.ico
|
#icon.ico
|
||||||
add_cd_file(FILE ${CMAKE_CURRENT_SOURCE_DIR}/icon.ico DESTINATION root NO_CAB NOT_IN_HYBRIDCD FOR all hybridcd)
|
add_cd_file(FILE ${CMAKE_CURRENT_SOURCE_DIR}/icon.ico DESTINATION root NO_CAB NOT_IN_HYBRIDCD FOR all hybridcd)
|
||||||
|
|
3
reactos/boot/bootdata/autorun-hybridcd.inf
Normal file
3
reactos/boot/bootdata/autorun-hybridcd.inf
Normal file
|
@ -0,0 +1,3 @@
|
||||||
|
[autorun]
|
||||||
|
open=bootcd\reactos\welcome.exe
|
||||||
|
icon=icon.ico
|
3
reactos/boot/bootdata/autorun-livecd.inf
Normal file
3
reactos/boot/bootdata/autorun-livecd.inf
Normal file
|
@ -0,0 +1,3 @@
|
||||||
|
[autorun]
|
||||||
|
open=readme.txt
|
||||||
|
icon=icon.ico
|
Loading…
Reference in a new issue