home *** CD-ROM | disk | FTP | other *** search
/ Amiga ISO Collection / AmigaUtilCD1.iso / Disk&HD / SUT-FD41.LZX / Floppy41 / Install·Floppy < prev   
Encoding:
Text File  |  1992-09-02  |  874 b   |  39 lines

  1. ;Install script for Floppy.device
  2.  
  3. (user 2)
  4. (set @default-dest "")
  5. (set mountpath0   "Sys:Storage/DosDrivers/")
  6. (set mountpath1   "Devs:DosDrivers/")
  7. (set mfspath      "Devs:DosDrivers/DF0/")
  8.  
  9. (set mfs
  10.    (= 0
  11.      (askchoice
  12.            (prompt "\nSelect drive name to see the Floppy.device\n")
  13.            (help
  14.                "\nIf you select 'DF0:' you must have MultiFileSystem.\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n"
  15.                @askchoice-help
  16.                )
  17.            (choices "DF0:" "FS0:")
  18.            (default 0)
  19.            )
  20.       )
  21. )
  22.  
  23. (copyfiles
  24.     (source "floppy.device") (dest "Devs:")
  25.     (safe)
  26. )
  27.  
  28. (delete (tackon mountpath0 "FS0") (infos))
  29. (delete (tackon mountpath1 "FS0") (infos))
  30. (delete (tackon mfspath    "FS0") (infos))
  31.  
  32. (set mountpath mountpath1)
  33. (if mfs (set mountpath mfspath))
  34.  
  35. (copyfiles
  36.     (source "") (dest mountpath) (pattern "FS0#?")
  37.     (safe)
  38. )
  39.