home *** CD-ROM | disk | FTP | other *** search
/ Atari FTP / ATARI_FTP_0693.zip / ATARI_FTP_0693 / Mint / mint104s.zoo / mint.src / mint.cnf < prev    next >
Text File  |  1992-11-13  |  4KB  |  103 lines

  1. # MiNT configuration file. Edit this with a normal ASCII text editor
  2. # Lines starting with '#' are comments. Other lines are commands for
  3. # MiNT to execute at boot up, or variables that control how MiNT
  4. # behaves.
  5.  
  6. # Here are some variables you can set. First, and most important, is the
  7. # full path+name of the file that contains the version of GEM to execute.
  8.  
  9. INIT=c:\mint\gem.sys
  10.  
  11. #
  12. # OK; other things you can change if you want to. There are reasonable
  13. # defaults for all of these.
  14. #
  15.  
  16. # MAXMEM= gives the maximum amount of memory that any process may use
  17. # (in kilobytes). The default is to make this unlimited, but if you have
  18. # a lot of memory and/or programs that grab more memory than they should,
  19. # try setting this.
  20. # e.g. to limit processes to 4096K of memory, remove the '#' at the
  21. # beginning of the next line.
  22.  
  23. #MAXMEM=4096
  24.  
  25. # SLICES controls how long a process may run before being interrupted.
  26. # The default value (2) is usually best, but if you tend to run
  27. # very processor intensive applications in the foreground, you might
  28. # want to put SLICES=3 (this makes cpu hogs get more time than they
  29. # otherwise would).
  30.  
  31. #SLICES=3
  32.  
  33. # DEBUG_LEVEL controls output of debugging information. The higher
  34. # the level, the more stuff MiNT will spew about about what it's doing.
  35. # The average user doesn't want to hear about this stuff, so the default
  36. # is 0.
  37. # DEBUG_DEVNO is the BIOS device number to which the info should be sent.
  38. # The default is the screen
  39.  
  40. #DEBUG_LEVEL=1
  41. #DEBUG_DEVNO=3
  42.  
  43. # BIOSBUF controls how BIOS I/O is performed. Normally, MiNT tries to buffer
  44. # this to provide a (considerable) improvement in speed. However, some
  45. # applications may get upset by this. BIOSBUF=no turns off all buffering
  46. # for maximum compatibility.
  47.  
  48. #BIOSBUF=no
  49.  
  50. #
  51. # Here are some commands that you can give to MiNT:
  52. # alias d: path    -- make a fake "drive" that actually points to the given
  53.                     path
  54. # cd path        -- changes MiNT's default directory
  55. # echo message    -- print something on the screen
  56. # exec program    -- runs a program; you must give the complete path
  57. #                    and file extensions (e.g. c:\bin\echo.prg)
  58. # sln path link    -- make a symbolic link named "link" pointing to "path"
  59. #                    "link" must be on drive U: for this to work
  60.  
  61. # Examples follow
  62. #
  63. # Old versions of MiNT used drive letters Q:, X:, and V: to stand for
  64. # the pipe, process, and device directories, respectively. This is no
  65. # longer directly supported, but we can use 'alias' to achieve the same
  66. # effect, as follows:
  67. #
  68. #alias q: u:\pipe
  69. #alias x: u:\proc
  70. #alias v: u:\dev
  71.  
  72. #You could also use "alias" to provide a quick way of getting at
  73. #nested directories, e.g. if you do
  74. #alias r: c:\some\long\path
  75. #then clicking on drive r: puts you into the folder c:\some\long\path
  76.  
  77. #
  78. # The "echo" command is really straightforward.
  79. #
  80. #echo Now booting MiNT.
  81. #
  82.  
  83. #
  84. # The "exec" command is used to launch programs. Note that programs
  85. # so launched are started before GEM is, so they must be TOS/TTP
  86. # programs. Most commonly used for starting device drivers.
  87.  
  88. #exec c:\mint\clockdev.prg -a
  89.  
  90. #
  91. # The "sln" command may be used to create "links" on drive U:. If
  92. # u:\foo is a link to c:\bar, then u:\foo\foo.txt is another way
  93. # of saying c:\bar\foo.txt. Judicious use of links can make
  94. # re-arranging hard disks and directories painless (if you always
  95. # use the names on drive u:, it doesn't matter where you put
  96. # the actual directories).
  97.  
  98. #sln c:\bin u:\bin
  99. #sln c:\mint\app u:\app
  100. #sln d:\termcap\etc u:\etc
  101.  
  102.  
  103.