home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 29 Fixes_o / 29-Fixes_o.zip / LSP138B1.DSK / SAMPLES / EXAMPLE2.RSP < prev    next >
Text File  |  1995-05-04  |  1KB  |  55 lines

  1. * ----------------------------------------------------------------------
  2. * EXAMPLE2.RSP
  3. * This response file installs DXMC0MOD.SYS and DXMT0MOD.SYS, 2 adapters.
  4. * It is just to illustrate setting parameters for two adapters with non-
  5. * NDIS LSP drivers.
  6. * CONFIG.SYS and AUTOEXEC.BAT will be placed in the root of the C drive.
  7. *
  8. INST_SECTION = (
  9.    ; Do not use the input configuration for LSP driver parameters.
  10.    MigrateControlFiles = 0
  11.  
  12.    ; Do not check the LAN adapters installed.
  13.    AdapterCheck = 0
  14.  
  15.    ; Define target location for LSP files.
  16.    TargetPath = c:\lsp135
  17.    )
  18.  
  19. ; Add 802.2 support for the shared RAM token ring adapter.
  20. PROT_SECTION = (
  21.    DriverName = DXMC0MOD$
  22.  
  23.    ; Specify that two adapters will be supported.
  24.    lsp_primary = 1
  25.    lsp_alternate = 1
  26.  
  27.    ; Set some parameters for primary and for alternate.
  28.    minlink = 2,4
  29.    )
  30.  
  31. ; Add NETBIOS driver to the configuration
  32. PROT_SECTION = (
  33.    DriverName = DXMT0MOD$
  34.  
  35.    ; DXMT0MOD.SYS is automatically added for both adapters.
  36.    lsp_primary = 1
  37.  
  38.    ; Set some parameters for primary and for alternate.
  39.    c = 14,12
  40.    st = 14, 12
  41.    s = 14, 12
  42.  
  43.    ; Set the parameters needed by PC3270.
  44.    es = 2
  45.    est = 2
  46.  
  47.    ; Set the parameter needed in memory manager
  48.    ; or Windows* environments.
  49.    cf = y
  50.  
  51.    ; Turn off piggy-backed acknowledgements.
  52.    PBA = 0
  53.    )
  54. *** End of Response file EXAMPLE2
  55.