home *** CD-ROM | disk | FTP | other *** search
/ Chip 2004 July / CMCD0704.ISO / Software / Complet / FreeDOS / fdbootcd.iso / FREEDOS / SETUP / INSTALL / INSTALL.INI < prev    next >
INI File  |  2003-12-29  |  2KB  |  44 lines

  1. [FREEDOS]
  2. // installation parameters; what we should add to
  3. // fdauto.bat and fdconfig.sys files
  4. //FREEDOS=1          // if this line is not specified, the section is ignored
  5.  
  6. // we add some lines to fdconfig.sys
  7.  
  8.   // %DIRECTORY% is a FreeDOS target directory here
  9.   // see details below
  10.  
  11. // and also some lines to fdauto.bat
  12.  
  13. FDAUTO1=@set dosdir=%DIRECTORY%
  14.  
  15. // below are sections describing some installation parameters to
  16.    some packages
  17. [DJGPP214]         // section -
  18.                    // the name of a package; the package archive is DJGPP.ZIP
  19. //DJGPP214=1
  20. DIRECTORY=C:\DJGPP // the default directory where to install;
  21.                    // if we don't want to install to C:\FDOS
  22.                    // written below
  23. ASK=1              // 1 or 0; to ask or not about the destination directory
  24.                    // the default value would be the value written
  25.                    // in DIRECTORY=C:\DJGPP line
  26. FDAUTO1=set DJGPP=%DIRECTORY%\DJGPP.ENV
  27.                    // this is the first line that we add to fdauto.bat file
  28. FDAUTO2=set PATH=%DIRECTORY%\BIN;%PATH%
  29.                    // this is the second line added to fdauto.bat
  30.                    // the %DIRECTORY% value is the value
  31.                    // written in DIRECTORY=... line
  32.                    // or the value that the user has entered
  33.                    // if the ASK=1 line is present;
  34.                    // if DIRECTORY=... is not specified,
  35.                    // we assume the DIRECTORY is the FreeDOS target
  36.                    // directory;
  37.  
  38. [NDN]
  39. //NDN=1
  40. DIRECTORY=C:\NDN
  41. ASK=1
  42. FDAUTO1=set PATH=%DIRECTORY%;%PATH%
  43. FDAUTO2=%DIRECTORY%\ndn.com
  44.