Changeset 4920 for trunk/tools/install
- Timestamp:
- Jan 10, 2001, 7:39:57 PM (25 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/tools/install/odin.cmd
r4900 r4920 1 /* $Id: odin.cmd,v 1.2 5 2001-01-09 18:17:46 sandervlExp $1 /* $Id: odin.cmd,v 1.26 2001-01-10 18:39:57 bird Exp $ 2 2 * 3 3 * Odin32 API WarpIn installation script generator. … … 123 123 rc = lineout(sInstFile, title); 124 124 rc = lineout(sInstFile, ' CONFIGSYS="DEVICE=$(1)\SYSTEM32\Win32k.sys -pe:pe -Dllfixes:D | UNIQUE(WIN32K.SYS) ADDTOP"'); 125 rc = lineout(sInstFile, ' >Add Win32k.sys to Config.sys .</PCK>'); 126 rc = lineout(sInstFile, ''); 125 rc = lineout(sInstFile, ' >Add Win32k.sys to Config.sys.</PCK>'); 126 rc = lineout(sInstFile, ''); 127 128 /* 129 * For release packages it is optionally to install the debug symbol files. 130 */ 131 if (pos('DEBUG', translate(filespec('name', sDllDir))) <= 0) then 132 do 133 rc = lineout(sInstFile, '<PCK INDEX=4'); 134 rc = lineout(sInstFile, ' PACKAGEID="Odin\Odin\Odin .sym files\0\0\5"'); 135 rc = lineout(sInstFile, ' TARGET="C:\ODIN\SYSTEM32"'); 136 rc = lineout(sInstFile, ' FIXED'); 137 title = " TITLE=""Odin Daily Build .sym Files ("date()")"""; 138 rc = lineout(sInstFile, title); 139 rc = lineout(sInstFile, ' >Installation of Odin .sym files.</PCK>'); 140 rc = lineout(sInstFile, ''); 141 end 142 127 143 rc = lineout(sInstFile, '</HEAD>'); 128 144 rc = lineout(sInstFile, '<BODY>'); … … 346 362 * Packet 2 347 363 */ 348 say sWICCmd '2 -c'||sBinDir' *.ini 2 -c'||sDllDir '*.dll pe.exe pec.exe odininst.exe regsvr32.exe win32k.sys win32k.ddp Win32kCC.exe kRx.exe';349 364 /* sWICCmd '2 -c'||sBinDir' odin.ini'; */ 350 if (rc <> 0) then return rc; 351 sWICCmd '2 -c'||sDllDir 'pe.exe *.dll ..\wgss50.dll pec.exe odininst.exe regsvr32.exe win32k.sys win32k.ddp Win32kCC.exe kRx.exe'; 352 if (rc <> 0) then return rc; 365 /* if (rc <> 0) then return rc; */ 366 sWICCmd '2 -c'||sDllDir||' pe.exe *.dll pec.exe odininst.exe regsvr32.exe win32k.sys win32k.ddp Win32kCC.exe kRx.exe'; 367 if (rc <> 0) then return rc; 368 sWICCmd '2 -c'||sBinDir||' wgss50.dll'; 369 if (rc <> 0) then return rc; 370 353 371 if (pos('DEBUG', translate(filespec('name', sDllDir))) > 0) then 354 372 do … … 357 375 end 358 376 377 359 378 /* 360 379 * Packet 3 is only win32k.sys config.sys line but it seems like we have to add something. … … 363 382 if (rc <> 0) then return rc; 364 383 384 385 /* 386 * Packet 4 is the .sym files and only present in release mode. 387 */ 388 if (pos('DEBUG', translate(filespec('name', sDllDir))) <= 0) then 389 do 390 sWICCmd '4 -c'||sDllDir '*.sym'; 391 if (rc <> 0) then return rc; 392 end 393 394 365 395 return rc; 366 396
Note:
See TracChangeset
for help on using the changeset viewer.