Author: dreimer
Date: Mon May 16 11:11:22 2016
New Revision: 71342
URL:
http://svn.reactos.org/svn/reactos?rev=71342&view=rev
Log:
[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
Added:
trunk/reactos/boot/bootdata/autorun-bootcd.inf
- copied unchanged from r71341, trunk/reactos/boot/bootdata/autorun.inf
trunk/reactos/boot/bootdata/autorun-hybridcd.inf (with props)
trunk/reactos/boot/bootdata/autorun-livecd.inf (with props)
Removed:
trunk/reactos/boot/bootdata/autorun.inf
Modified:
trunk/reactos/boot/bootdata/CMakeLists.txt
Modified: trunk/reactos/boot/bootdata/CMakeLists.txt
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/boot/bootdata/CMakeLists.t…
==============================================================================
--- trunk/reactos/boot/bootdata/CMakeLists.txt [iso-8859-1] (original)
+++ trunk/reactos/boot/bootdata/CMakeLists.txt [iso-8859-1] Mon May 16 11:11:22 2016
@@ -18,7 +18,9 @@
add_cd_file(FILE ${CMAKE_CURRENT_SOURCE_DIR}/bootcdregtest/regtest.cmd DESTINATION
reactos/bin FOR all)
#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
add_cd_file(FILE ${CMAKE_CURRENT_SOURCE_DIR}/icon.ico DESTINATION root NO_CAB
NOT_IN_HYBRIDCD FOR all hybridcd)
Added: trunk/reactos/boot/bootdata/autorun-hybridcd.inf
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/boot/bootdata/autorun-hybr…
==============================================================================
--- trunk/reactos/boot/bootdata/autorun-hybridcd.inf (added)
+++ trunk/reactos/boot/bootdata/autorun-hybridcd.inf [iso-8859-1] Mon May 16 11:11:22
2016
@@ -0,0 +1,3 @@
+[autorun]
+open=bootcd\reactos\welcome.exe
+icon=icon.ico
Propchange: trunk/reactos/boot/bootdata/autorun-hybridcd.inf
------------------------------------------------------------------------------
svn:eol-style = CRLF
Added: trunk/reactos/boot/bootdata/autorun-livecd.inf
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/boot/bootdata/autorun-live…
==============================================================================
--- trunk/reactos/boot/bootdata/autorun-livecd.inf (added)
+++ trunk/reactos/boot/bootdata/autorun-livecd.inf [iso-8859-1] Mon May 16 11:11:22
2016
@@ -0,0 +1,3 @@
+[autorun]
+open=readme.txt
+icon=icon.ico
Propchange: trunk/reactos/boot/bootdata/autorun-livecd.inf
------------------------------------------------------------------------------
svn:eol-style = CRLF
Removed: trunk/reactos/boot/bootdata/autorun.inf
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/boot/bootdata/autorun.inf?…
==============================================================================
--- trunk/reactos/boot/bootdata/autorun.inf [iso-8859-1] (original)
+++ trunk/reactos/boot/bootdata/autorun.inf (removed)
@@ -1,3 +0,0 @@
-[autorun]
-open=reactos\welcome.exe
-icon=icon.ico