home *** CD-ROM | disk | FTP | other *** search
/ The Fred Fish Collection 1.5 / ffcollection-1-5-1992-11.iso / s / startup-sequence.hd < prev    next >
Text File  |  1991-10-17  |  801b  |  29 lines

  1. ; Startup sequence for Hard Disk users...checks for hard disk, then
  2. ; transfers control if it is present. (The script assumes DH0:)
  3. ; TO USE: copy your normal startup-sequence files (Startup-Sequence,
  4. ; and StartupII to the S: directory of your hard disk.
  5. ; Then rename your normal Startup-Sequence file
  6. ; as Startup-Sequence.f in the S: directory of the floppy, just in case.
  7. ; Now replace the Startup-Sequence file on the floppy with this file.
  8. ;
  9. setpatch
  10. SYS:System/FastMemFirst
  11. binddrivers
  12. assign >NIL: CD0: exists
  13. IF NOT WARN
  14. ; hard disk is present
  15. assign sys: dh0:
  16. assign c: SYS:c
  17. assign L: SYS:l
  18. assign FONTS: SYS:fonts
  19. assign S: SYS:s
  20. assign DEVS: SYS:devs
  21. assign LIBS: SYS:libs
  22. makedir ram:tr
  23. assign t: ram:tr
  24. execute s:Startup-Sequence
  25. ELSE
  26. ; no hard disk
  27. execute s:Startup-Sequence.f
  28. ENDIF
  29.