home *** CD-ROM | disk | FTP | other *** search
/ Il CD di internet / CD.iso / KERNELS / LODLIN15.ZIP / LOADLIN / CHANGES < prev    next >
Encoding:
Text File  |  1994-09-05  |  6.2 KB  |  172 lines

  1. -----------------------------------------------------
  2. version 1.5
  3.  
  4. added:
  5.  
  6.   Adaption to newer kernel:
  7.     The setup buffer is now 16Kb. Setup size is determined by byte 497 in
  8.     the boot sector. The actual size and the setup buffer size are printed
  9.     by the debug output.
  10.  
  11.     Added kernel version control (needs patch for boot/setup.S).
  12.  
  13.     Changed the dev-numbers of /dev/xda, /dev/xdb to  0xD00,0xD40.
  14.     (if you rely on old numbering use the -oldxd switch)
  15.  
  16.   The Javier method:
  17.     A very clever guy in Spain, Javier Achirica
  18.     <javier@autom.uva.es> invented a method to intercept the Linux
  19.     setup code just before protected mode transition. I call it the
  20.     "Javier method" and it is enabled whenever the -ja switch is used
  21.     or neither BIOSINT nor REALBIOS are configured.
  22.     All configuration steps, that where necessary for version 1.4 and below
  23.     are now superfluous on allmost all machines.
  24.     DBLSPACE is no more a problem and, although invented especially for
  25.     V86 mode I use Javier's method also for realmode to move the image down.
  26.  
  27.   New option -clone:
  28.     On some 486 clones we have problems with CR0 while probing for V86 mode.
  29.     (as reported by Jacek Zapala zapala@if.pw.edu.pl ).
  30.     It can happen that the CPU is in realmode, but PAGING is enabled !
  31.     This is possible, but neither documented nor supported by INTEL.
  32.     May be the motherboard's BIOS is mapping shadow ram this way,
  33.     or one of those old and strange EMM managers is used,
  34.     but probably this is an indication of a not exactly compatible
  35.     486 clone. The -clone switch byepasses the CR0 check and assumes
  36.     V86 if an EMM manger is found.
  37.     But of course this EMM manager must not use real paging !
  38.  
  39.   New option -n:
  40.     You can switch off the translation of root=/dev/xxx with the -n switch
  41.     The string is then put unchanged into the command_line.
  42.     Actually it does both, translates and put into command_line, but
  43.     Linux will overwrite the LOADLIN-translation, and LOADLIN has
  44.     a chance to check for know numbers.
  45.     This option is intended for future Linux devellopement,
  46.     if Linus expands the root device list, you can use these
  47.     new device with your then not uptodate LOADLIN.
  48.  
  49.   Changed ramdisk= param
  50.     I got report, that the prompt for diskchange (if using ramdisk)
  51.     was inconvenient when using diskless configurations (builtin ramdisk),
  52.     as used by <tiv@claudius.sch.bme.hu> (Szemethy, what's the hell is your
  53.     correct "Reply to").
  54.     With "ramdisk=1440,no" the prompt will be disabled.
  55.  
  56.  
  57.   Using VCPI with NOEMS:
  58.     As told by Jon Peatfield <J.S.Peatfield@damtp.cambridge.ac.uk>
  59.     there is VCPI available even if using NOEMS in EMM386.
  60.     The signature is not EMMXXXX0, but EMMQXXX0, which is a violation
  61.     of the VCPI specification.
  62.  
  63.   Enhancements for loadlinX:
  64.     The loadlin preprocessor LOADLINX now fully supports response files
  65.     (@test.par). Additional command_line options are merged into those
  66.     comeing from the response file, so you can you a "default" params
  67.     file and then change some params on the actual call. With this
  68.     feature LOADLINX can may be useful even if UMSDOS support is not
  69.     needed.
  70.     New option --version=... (e.g. --version=1.1.47#1) verifies the
  71.     kernel version and aborts, if no match is found.
  72.     Otion --version (without the "=") prints the version-string from
  73.     a kernel image.
  74.  
  75.   New docs:
  76.     QUICKSTA.RT, is taken from Pat Volkerding's LODLIN14.TXT
  77.  
  78.  
  79. bug-fix:
  80.    vga=-1 did not work, e.g the sign wasn't interpreted.
  81.    Minor changes on the cpu_check routine.
  82.  
  83. -----------------------------------------------------
  84. version 1.4
  85.  
  86. added:
  87.  
  88. REALBIOS support (probing the BIOS via boot from floppy as proposed by
  89. Alessandro Rubini) to overcome the problem with QEMM.
  90. Alpha tested by Chuck Munro.
  91. loadlinX.exe (preprocessor for LOADLIN ("root=c:"),
  92.    as proposed by Jacques Gelinas)
  93.  
  94. Better documentation (author: Chuck Munro)
  95.   readme --> manual.txt
  96.  
  97.  
  98. removed:
  99.  
  100.  old source DEBUGMODE switch (don't need it any more)
  101.  
  102. bug-fix:
  103. None from 1.3, got no bug report till now,
  104.  (but problem reports solved with introduction of REALBIOS support)
  105.  
  106.  
  107. -----------------------------------------------------
  108. version 1.3
  109.  
  110. added verbose and debug (-v -d -t) options
  111.  
  112.  
  113. Adaptation to kernel 1.0.5 changes for init/main.c :
  114.  
  115.   Kernel changes (by Linus):
  116.     Command_line size is now 256 by default and is checked for size,
  117.     but irritating option passing to SYSVinit is not handled.
  118.   LOADLIN changes:
  119.     I guess it had been better to let the kernel handle ALL params,
  120.     and pass the params as string (instead of writing around in the binary),
  121.     so future devellopement would be much easier.
  122.     It was a very good idea of Linus to introduce the "command line feature",...
  123.     and if (one day) the kernel handles all things appropriate, I will
  124.     change back the following changes:
  125.  
  126.     Got "ro,rw" flags away from command line, sets 0x1f2 of bootsector instead.
  127.     Recognize all "root=..." myself, which avoids the bug in "init/main.c".
  128.  
  129. Fixed bugs:
  130.    vga=ask,normal,extended did not work
  131.    parsing DOS-command-line terminated incorrectly
  132.  
  133. Cleaned up documentation
  134.  
  135.  
  136. -----------------------------------------------------
  137. version 1.2.1
  138.  
  139. never released
  140.  
  141. Fixed the problem with DBLSPACE
  142.   Resets interrupt vector if BIOSINTV.SYS is recognized,
  143.   not only if using VCPIswitch.
  144.  
  145. -----------------------------------------------------
  146. version 1.2
  147.  
  148. first appearence on:
  149.    sunsite.unc.edu:/pub/Linux/system/Linux-boot
  150.    elserv.ffm.fgan.de:/pub/linux/loadlin-1.2
  151.  
  152. Added support for V86 (realmode back switch over VCPI)
  153. Added BIOSINTV.SYS driver to get a clean interrupt vector table
  154. Checked and cleaned up "sync before load" out of a LINUX.BAT file
  155.  
  156. -----------------------------------------------------
  157. version 1.1
  158.  
  159. First released version
  160. appeared on ftp.ffm.fgan.de
  161.  
  162. Added response file feature
  163. resolved problem with uppercase conversion in CONFIG.SYS
  164. Cleaned up documentation.
  165. Sent my kernel patch to Linus.
  166.  
  167. -----------------------------------------------------
  168. version 1.0   (NOTE: I allways start any packet-numbering with 1.0)
  169.  
  170. Private ALPHA version.
  171. Never released
  172.