home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 8 Other / 08-Other.zip / srtbt20.zip / READ.ME next >
Text File  |  1997-08-12  |  3KB  |  74 lines

  1. README.TXT:
  2.  
  3. System requirements:
  4.     Any system capable of running classic REXX
  5.  
  6. Usage:
  7.     SRT drive rem_level
  8.     
  9.     drive is the drive drive that contains the CONFIG.SYS file you want processed.
  10.       This input is mandatory.
  11.  
  12.     rem_level is the level of remarks you want left in the new config.sys file.
  13.     ALL - Leaves all remark statements in and add remark statements in 
  14.        between the sections
  15.     SOME - Adds remark statements in between the sections but deletes
  16.        any existing remarks.
  17.  
  18. Legal stuff and credits:
  19.   This program is FREE and it is highly recommended you back up your CONFIG.SYS file 
  20.   before using it.  I have used it on my machine without any problems but of course YMMV.
  21.   The REXX procedure is based on information provided by Aaron Tiensivu, Phil, Jim and
  22.   suggestions made in OS/2 Warp Uncensored and feedback from users like you.
  23.  
  24. General Info:
  25.  
  26.   Basically the procedure will parse your CONFIG.SYS file and arrange the lines in the 
  27.   following order:
  28.  
  29. basedev
  30. libpath
  31. set
  32. codepage
  33. country
  34. devinfo
  35. device (OS/2 drivers)
  36. ifs
  37. swappath
  38. break
  39. device (DOS drivers}
  40. dos
  41. fcbs
  42. files
  43. lastdrive
  44. protectonly
  45. rmsize
  46. shell
  47. run/call
  48. protshell
  49. {all the rest goes here}
  50.  
  51. In addition it will handle remarks depending upon the switch used (See Usage:)
  52.  
  53. It will NOT change your CONFIG.SYS file.  The output of the sort procedure will be 
  54. stored in a file called CONFIG.NEW in the current directory.  After you have reviewed the 
  55. file, just change the name and reboot.
  56.  
  57. History:
  58.   This program was originally written in response to a thread on comp.os.os2.misc in which
  59. a person wanted help with a 6 minute boot time.  At the time, the only thing on hobbes 
  60. was a text file (CNFGSORT.ZIP) that explained config.sys file sorting.  Thus
  61. was SORTBOOT formed.  Me being basically lazy, the name was later shortened to SRT.
  62.   It should be noted that sorting your config.sys file may or may not help you.  On my
  63. system (no LAN, 2 CDs and other normal stuff), my boot time without sorting is about 2 
  64. minutes.  With sorting it's about 1 and a half minutes.  (That's timed from when the
  65. boot blob appears until the HD stops thrashing.)  For others, I'm told it knocks off a couple 
  66. of minutes.  YMMV.
  67.  
  68. This version streamlines the sorting quite a bit by using stems.  This method 
  69. should also stop the problem that previous versions had of putting a line in twice.
  70. Due to popular demand, it will also handle remark statements a little better.
  71.   Another bug that hopefully is fixed is with networking.  Previously, I had put all
  72. the CALL statements first, then all the RUN statements.  This knocked some networks
  73. off-line.  Reversing the order did the same for other networks.  Now, CALL and RUN 
  74. statements are kept in whatever order they were originally in.