home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 33 VDrivers / 33-VDrivers.zip / 1601_200.zip / README.CID < prev    next >
Text File  |  1996-07-12  |  4KB  |  138 lines

  1. README.CID                                                          21-June-96
  2.  
  3.                    CID Installation of the MGA OS/2 Drivers
  4.                    ========================================
  5.  
  6.  
  7.  
  8. Contents
  9. --------
  10.  
  11.         1. Introduction
  12.  
  13.         2. Configuring the driver via CID
  14.  
  15.             a. Screen resolution and Pixel Depth.
  16.  
  17.             b. Monitor selection.
  18.  
  19.         3. Installation of the MGA OS/2 Drivers via CID
  20.  
  21.  
  22.  
  23.  
  24. 1. Introduction
  25. ---------------
  26.  
  27. This document discusses the issues concerning CID installation of the
  28. MGA OS/2 Drivers.
  29.  
  30. The OS/2 utility DSPINSTL.EXE is used to perform CID installation of
  31. display drivers.
  32.  
  33. Typically, CID installation is done by running a batch file. The
  34. system administrator customizes the batch file and then runs it on the
  35. system to be upgraded. The batch file attaches the network drive that
  36. contains the MGA drivers to the local computer, and then runs
  37. dspinstl to install the drivers.
  38.  
  39. A script file (MGAX64.DSP) is used to tell DSPINSTL where to install
  40. the various components of the MGA driver.
  41.  
  42. The script file included with the MGA OS/2 Drivers disk will install
  43. the display driver. Once the drivers are installed, the user can
  44. configure the driver by launching the System Icon object, or by
  45. running the MGASET utility.
  46.  
  47. If the system adminstrator wishes to configure the driver during CID
  48. installation (choose monitor type, resolution, pixel depth) then he/she
  49. will have to modify the script file (MGAX64.DSP).
  50.  
  51. Where to go from here:
  52.  
  53.    -To install the driver via CID using the default driver
  54.     configuration, go to section 3.
  55.  
  56.  
  57.    -To install the driver via CID using a custom configuration,
  58.     go to section 2.
  59.  
  60.  
  61.  
  62. 2. Configuring the driver via CID
  63. ---------------------------------
  64.  
  65. 2.1 Screen resolution and pixel depth:
  66.  
  67. To configure the boot-up resolution and pixel depth of the driver,
  68. add the following lines to the MGAX64.DSP script file:
  69.  
  70.         :SET_RESOLUTION
  71.         WIDTH=wwww
  72.         HEIGHT=hhhh
  73.         COLORS=cccc
  74.         PLANES=1
  75.  
  76. where wwww = display width
  77.       hhhh = display height
  78.       cccc = number of colours (256, 65536, or 16777216)
  79.  
  80. Valid width/height combinations are: 640x480, 800x600, 1024x768,
  81. 1152x864, 1280x1024, 1600x1200, 1600x1280, and 1800x1440. Depending
  82. on the type of board installed, and on how much VRAM is available,
  83. not all resolutions are supported. If an invalid resolution is
  84. specified, then the driver will boot using the default 640x480
  85. resolution.
  86.  
  87.  
  88. 2.2 Monitor selection
  89.  
  90. Monitor selection is necessary to tell the driver what resolutions
  91. and refresh rates are supported by the monitor.
  92.  
  93. Certain monitors (DDC monitors) are able to communicate their
  94. capabilities to the display driver. When such monitors are being
  95. used, the monitor selection step is not required.
  96.  
  97. When a non-DDC monitor is being used, the driver relies on the
  98. MGA.INF file to know the monitor capabilities. This file is generated
  99. by selecting a monitor using the MGASET utility. If no MGA.INF file
  100. exists (and the monitor is non-DDC), the driver will use the default
  101. 60 Hz refresh rate for all resolutions.
  102.  
  103. Once the system administrator has generated an MGA.INF file, the
  104. MGAX64.DSP script can be modified to copy the MGA.INF file to the
  105. appropriate location on the system being upgraded. This line must be
  106. added to the :FILES section of MGAX64.DSP
  107.  
  108.         MGA.INF          %BOOTDRIVE%:\MGA\OS2
  109.  
  110. This line assumes that the MGA.INF file can be found in the same
  111. directory as the DSP script.
  112.  
  113.  
  114.  
  115. 3. Installation of the MGA OS/2 Drivers via CID
  116. -----------------------------------------------
  117.  
  118. Installation of the drivers via CID is done using OS/2's DSPINSTL
  119. utility. The INSTALL.CMD batch file included with the installation disk
  120. makes use of this utility.
  121.  
  122. Before running INSTALL, the system being upgraded should be able to
  123. access the network directory containing the new drivers. Also, if the
  124. administrator has made modifications to the MGAX64.DSP script or to
  125. MGA.INF (as described in section 2), these files should be located in
  126. this network directory.
  127.  
  128. From an OS/2 session, type:
  129.  
  130.      X:\DSKIMAGE\INSTALL X:\DSKIMAGE D: /U
  131.  
  132. where X:\DSKIMAGE is the network driver and directory containing the
  133.                   new drivers.
  134.  
  135.       D: is driver where the drivers are to be installed.
  136.  
  137.  
  138.