In memory of Ben “bushing” Byer, who passed away on Monday, February 8th, 2016.

ELF to DOL Converter

From WiiBrew
Jump to navigation Jump to search
Elf converter
General
Author(s)Yossi
TypePC utility
Versionv 1.1
LicenseWhatever 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 this/these program(s) before running this script, as it doesn't have the smarts to avoid it/them. Feel free to add to this list if you find something that should be in it. So far the list is:

  • Kobodl

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