Changeset 15403


Ignore:
Timestamp:
Dec 24, 2000, 3:36:54 PM (24 years ago)
Author:
sandervl
Message:

disabled dll name hack

File:
1 edited

Legend:

Unmodified
Added
Removed
  • TabularUnified tags/trunk/tools/install/odin.cmd

    r15312 r15403  
    1 /* $Id: odin.cmd,v 1.21 2000-12-03 20:18:26 bird Exp $
     1/* $Id: odin.cmd,v 1.22 2000-12-24 14:36:54 sandervl Exp $
    22 *
    33 * Odin32 API WarpIn installation script generator.
     
    127127rc = lineout(sInstFile, '     CONFIGSYS="DEVICE=WIN32K.SYS | REMOVELINE"');
    128128rc = lineout(sInstFile, '     CONFIGSYS="DEVICE=WIN32K.SYS | REMOVELINE"');
    129 rc = lineout(sInstFile, '     CONFIGSYS="DEVICE=$(1)\SYSTEM32\Win32k.sys -pe:pe | UNIQUE ADDTOP"');
     129rc = lineout(sInstFile, '     CONFIGSYS="DEVICE=$(1)\SYSTEM32\Win32k.sys -pe:pe -Dllfixes:D | UNIQUE ADDTOP"');
    130130rc = lineout(sInstFile, '     >Add Win32k.sys to Config.sys .</PCK>');
    131131rc = lineout(sInstFile, '');
    132 rc = lineout(sInstFile, '<PCK INDEX=4');
    133 rc = lineout(sInstFile, '     PACKAGEID="Odin\Odin\Odin 3dfx Voodoo OpenGL Files\0\0\5"');
    134 rc = lineout(sInstFile, '     TARGET="C:\ODIN\SYSTEM32"');
    135 rc = lineout(sInstFile, '     FIXED');
    136 title = "     TITLE=""Odin Daily Build 3dfx Voodoo OpenGL Files ("date()")""";
    137 rc = lineout(sInstFile, title);
    138 rc = lineout(sInstFile, '     >Installation of Odin 3dfx Voodoo OpenGL files .</PCK>');
    139 rc = lineout(sInstFile, '');
    140 rc = lineout(sInstFile, '<PCK INDEX=5');
    141 rc = lineout(sInstFile, '     PACKAGEID="Odin\Odin\Odin 3dfx Voodoo 1 Glide Files\0\0\5"');
    142 rc = lineout(sInstFile, '     TARGET="C:\ODIN\SYSTEM32"');
    143 rc = lineout(sInstFile, '     FIXED');
    144 title = "     TITLE=""Odin Daily Build 3dfx Voodoo 1 Glide Files ("date()")""";
    145 rc = lineout(sInstFile, title);
    146 rc = lineout(sInstFile, '     >Installation of Odin 3dfx Voodoo 1 Glide files .</PCK>');
    147 rc = lineout(sInstFile, '');
    148 rc = lineout(sInstFile, '<PCK INDEX=6');
    149 rc = lineout(sInstFile, '     PACKAGEID="Odin\Odin\Odin 3dfx Voodoo 2 Glide Files\0\0\5"');
    150 rc = lineout(sInstFile, '     TARGET="C:\ODIN\SYSTEM32"');
    151 rc = lineout(sInstFile, '     FIXED');
    152 title = "     TITLE=""Odin Daily Build 3dfx Voodoo 2 Glide Files ("date()")""";
    153 rc = lineout(sInstFile, title);
    154 rc = lineout(sInstFile, '     >Installation of Odin 3dfx Voodoo 2 Glide files .</PCK>');
    155132rc = lineout(sInstFile, '</HEAD>');
    156133rc = lineout(sInstFile, '<BODY>');
     
    391368if (rc <> 0) then return rc;
    392369
    393 /*
    394  * Packet 4
    395  */
    396 sWICCmd '4 -c'||sDllDir||'\Glide *.dll';
    397 if (rc <> 0) then return rc;
    398 
    399 /*
    400  * Packet 5
    401  */
    402 sWICCmd '5 -c'||sDllDir||'\Glide\Voodoo1 *.dll';
    403 if (rc <> 0) then return rc;
    404 
    405 /*
    406  * Packet 6
    407  */
    408 sWICCmd '6 -c'||sDllDir||'\Glide\Voodoo2 *.dll';
    409 if (rc <> 0) then return rc;
    410 
    411370return rc;
    412371
Note: See TracChangeset for help on using the changeset viewer.