home *** CD-ROM | disk | FTP | other *** search
INI File | 2003-12-29 | 1.6 KB | 44 lines |
- [FREEDOS]
- // installation parameters; what we should add to
- // fdauto.bat and fdconfig.sys files
- //FREEDOS=1 // if this line is not specified, the section is ignored
-
- // we add some lines to fdconfig.sys
-
- // %DIRECTORY% is a FreeDOS target directory here
- // see details below
-
- // and also some lines to fdauto.bat
-
- FDAUTO1=@set dosdir=%DIRECTORY%
-
- // below are sections describing some installation parameters to
- some packages
- [DJGPP214] // section -
- // the name of a package; the package archive is DJGPP.ZIP
- //DJGPP214=1
- DIRECTORY=C:\DJGPP // the default directory where to install;
- // if we don't want to install to C:\FDOS
- // written below
- ASK=1 // 1 or 0; to ask or not about the destination directory
- // the default value would be the value written
- // in DIRECTORY=C:\DJGPP line
- FDAUTO1=set DJGPP=%DIRECTORY%\DJGPP.ENV
- // this is the first line that we add to fdauto.bat file
- FDAUTO2=set PATH=%DIRECTORY%\BIN;%PATH%
- // this is the second line added to fdauto.bat
- // the %DIRECTORY% value is the value
- // written in DIRECTORY=... line
- // or the value that the user has entered
- // if the ASK=1 line is present;
- // if DIRECTORY=... is not specified,
- // we assume the DIRECTORY is the FreeDOS target
- // directory;
-
- [NDN]
- //NDN=1
- DIRECTORY=C:\NDN
- ASK=1
- FDAUTO1=set PATH=%DIRECTORY%;%PATH%
- FDAUTO2=%DIRECTORY%\ndn.com
-