Skip to content

Commit

Permalink
Version 1.3
Browse files Browse the repository at this point in the history
* Add info files for libs dirs
* Auto-fallback to loading lib from floppy disk
* Add scripts to create ADF and LHA
  • Loading branch information
LinuxJedi committed Feb 24, 2021
1 parent 1003096 commit 921bb7f
Show file tree
Hide file tree
Showing 6 changed files with 21 additions and 4 deletions.
Binary file modified Software/FlashKickstart
Binary file not shown.
10 changes: 10 additions & 0 deletions Software/create_adf.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
xdftool fk.adf create
xdftool fk.adf format "FK"
xdftool fk.adf write FK
xdftool fk.adf write FlashKickstart
xdftool fk.adf write FlashKickstart.info
xdftool fk.adf write libs13
xdftool fk.adf write libs20
xdftool fk.adf write libs13.info
xdftool fk.adf write libs20.info

3 changes: 3 additions & 0 deletions Software/create_lha.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
tar -cvf fk.tar --transform 's,^,FK/,' FK FlashKickstart FlashKickstart.info libs13 libs13.info libs20 libs20.info
patool repack fk.tar fk.lha
rm fk.tar
12 changes: 8 additions & 4 deletions Software/gui.c
Original file line number Diff line number Diff line change
Expand Up @@ -513,10 +513,14 @@ int main()
if (!(ReqToolsBase = (struct ReqToolsBase *)
OpenLibrary (REQTOOLSNAME, REQTOOLSVERSION)))
{
myputs ("You need reqtools.library V38 or higher!\n"
"Please install it in your Libs: drirectory.\n");
if (!(ReqToolsBase = (struct ReqToolsBase *)
OpenLibrary ("fk:libs13/reqtools.library", REQTOOLSVERSION)))
{
myputs ("You need reqtools.library V38 or higher!\n"
"Please install it in your Libs: drirectory.\n");

exit (RETURN_FAIL);
exit (RETURN_FAIL);
}
}

/* Open any version expansion.library to read in ConfigDevs */
Expand Down Expand Up @@ -624,7 +628,7 @@ int main()
}

case GADABOUT:
rtEZRequest("Flash Kickstart Programmer v1.2\nCreated by Andrew (LinuxJedi) Hutchings\[email protected]\nThis software is released under a GPLv3 license\n\nBased on work by Paul Raspa.",
rtEZRequest("Flash Kickstart Programmer v1.3\nCreated by Andrew (LinuxJedi) Hutchings\[email protected]\nThis software is released under a GPLv3 license\n\nBased on work by Paul Raspa.",
"Cool!", NULL, NULL);
break;

Expand Down
Binary file added Software/libs13.info
Binary file not shown.
Binary file added Software/libs20.info
Binary file not shown.

0 comments on commit 921bb7f

Please sign in to comment.