forked from PR77/68000_Relocator_FLASH_Kickstart
-
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Add info files for libs dirs * Auto-fallback to loading lib from floppy disk * Add scripts to create ADF and LHA
- Loading branch information
Showing
6 changed files
with
21 additions
and
4 deletions.
There are no files selected for viewing
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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 */ | ||
|
@@ -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; | ||
|
||
|
Binary file not shown.
Binary file not shown.