home *** CD-ROM | disk | FTP | other *** search
/ Amiga ISO Collection / AmigaUtilCD2.iso / Misc / GVPINST.DMS / in.adf / GVP / GVPPatch / InstallGVPPatch < prev    next >
Encoding:
Text File  |  1992-08-24  |  1.4 KB  |  43 lines

  1. ; PhonePak VFX/GVPPatch Installation Script
  2. ; Version 1.04
  3. ; By Russel Miranda - 20 Aug 1992
  4. ; modified for IOExtender ECQ 24aug92
  5. ; modified for a2000 040 ecq 24aug92
  6.  
  7. ; Written for use with Commodore's Installer.
  8.  
  9. (set IOX "GVP.Install:")
  10.  
  11. ; ====================
  12. ; Make sure the user really wants to install this patch...
  13. ;
  14.  
  15. (message "This installation should only be performed if you are experiencing "
  16.          "character loss during high speed serial transfers."
  17.          "with the A2000 68040r Serial port.\n\n")
  18.  
  19. (if (askbool (prompt "Do you understand, and wish to proceed with the "
  20.                      "installation of the GVPPatch program?")
  21.              (help "Please read the GVPPatch.Readme file supplied for more "
  22.                    "information.")
  23.              (choices "Yes" "No"))
  24.     (
  25.       (copyfiles (source (tackon IOX "GVP/GVPPatch/GVPPatch"))
  26.                  (dest "C:"))
  27.       (startup "c/GVPPatch"
  28.                (prompt "Is it OK to modify your startup to run the GVPPatch "
  29.                        "program when you boot?")
  30.                (help "For this program to be useful, it should be run in your "
  31.                      "User-Startup or Startup-Sequence.\n\n"
  32.                      @startup-help)
  33.                (command ("Run >NIL: GVPPatch -sgvpser.device")))
  34.     )
  35.     (
  36.       (message "Aborting installation of the GVPPatch program.")
  37.       (exit (quiet))
  38.     )
  39. )
  40.  
  41. ; Set up the default dest so the user isn't confused.
  42. (set @default-dest "C:")
  43.