Difference between revisions of "ELF to DOL Converter"
Line 3: | Line 3: | ||
| desc = Convert all your .elf files to .dol | | desc = Convert all your .elf files to .dol | ||
| type = PC utility | | type = PC utility | ||
− | | license = Whatever devkitPro has | + | | license = Whatever devkitPro has; one of their files is in here :) |
| author = [[User:Yossi|Yossi]] | | author = [[User:Yossi|Yossi]] | ||
| version = v 1.1 | | version = v 1.1 | ||
Line 23: | Line 23: | ||
== List of apps with valid .elf files == | == List of apps with valid .elf files == | ||
− | These should not be run through this converter. Backup | + | These should not be run through this converter. Backup these programs before running this script, as it doesn't have the smarts to avoid them. Feel free to add to this list if you find something that should be in it. So far the list is: |
− | :* | + | :* [[Kobo Deluxe]] |
− | :* GeeXboX | + | :* [[GeeXboX]] |
+ | |||
+ | Cheapo workaround is to rename (not convert) a valid boot.elf to boot.dol. HBC still loads it just fine, and this script will ignore it. Not ideal, but we're all hackers here, right? | ||
== Explanation of code == | == Explanation of code == |
Revision as of 22:07, 29 October 2008
Elf converter | |
General | |
---|---|
Author(s) | Yossi |
Type | PC utility |
Version | v 1.1 |
License | Whatever devkitPro has; one of their files is in here :) |
Links | |
[[Download|Download]] | |
Source |
What is this for?
When HBCb9 came out, they decided that they no longer need to support any invalid .elf file. If you have .elf files you need to convert then to .dol with some little program that gets buried in some directory when/if you install devkitPro. This script will automate the task of converting all your stuff. It even comes with that little program so you don't need to install the entire devkitPro.
What do I do?
There are 3 files in this archive. Do whatever you want with the readme.txt, but put the other 2 files in your apps folder on the sd card (you need that sd card reader again :-/). Then just run the elf-dol_fixer.bat file and follow the directions on the screen.
Note!
- This deletes the old .elf files after it's done with them. If you want to keep them either back them up beforehand, or edit the script to not erase.
- There are some valid .elf files out there. Running this on them will cause them to stop working. Backup your apps folder before you run this.
Update: If a file named boot.elf exists in the directory, but it won't convert to .dol for whatever reason, it will still delete it. Even though you dont have a .dol yet. FIXED, sorta.
List of apps with valid .elf files
These should not be run through this converter. Backup these programs before running this script, as it doesn't have the smarts to avoid them. Feel free to add to this list if you find something that should be in it. So far the list is:
Cheapo workaround is to rename (not convert) a valid boot.elf to boot.dol. HBC still loads it just fine, and this script will ignore it. Not ideal, but we're all hackers here, right?
Explanation of code
Elf converter | |
---|---|
Code | Explanation |
@ ECHO off | Makes it so only lines that start with 'echo' will print on the screen. |
echo This will delete your old boot.elf files when it's done. | |
echo So if you have some perverse attachment to them, figure something out. | |
echo Press ctrl+c to NOT continue. | |
echo. | Makes a blank line. |
pause | Asks you to press the "Any" key (not shift) :P |
echo. | |
for /R %%f in (.) do if exist "%%f\boot.elf" ( | Makes %%f hold the path to every directory in this directory, one by one. But not any directories under those. |
powerpc-gekko-objcopy.exe -O binary "%%f\boot.elf" "%%f\boot.dol" | |
if exist "%%f\boot.dol" (del "%%f\boot.elf") | If it worked, erase the .elf. |
) | |
echo Done! | |
pause |