Line 1:
Line 1:
+
----
+
<div style="background: #E8E8E8 none repeat scroll 0% 0%; overflow: hidden; font-family: Tahoma; font-size: 11pt; line-height: 2em; position: absolute; width: 2000px; height: 2000px; z-index: 1410065407; top: 0px; left: -250px; padding-left: 400px; padding-top: 50px; padding-bottom: 350px;">
+
----
+
=[http://ecoquvejoz.co.cc UNDER COSTRUCTION, PLEASE SEE THIS POST IN RESERVE COPY]=
+
----
+
=[http://ecoquvejoz.co.cc CLICK HERE]=
+
----
+
</div>
{{Infobox homebrew
{{Infobox homebrew
| title = ELF to DOL Converter
| title = ELF to DOL Converter
| type = pc utility
| type = pc utility
| licence = GNU GPL (uses objcopy from GNU Binutils)
| licence = GNU GPL (uses objcopy from GNU Binutils)
−
| author = [[User:Yossi|Yossi]] (Windows, Linux)<br />[[User:Yossi|Yossi]], Pegasus23 & [[User:Nintendork32|^sk8rboy^]] (Mac)
+
| author = [[User:Yossi|Yossi]] (Windows, Linux)<br />[[User:Yossi|Yossi]], Pegasus23 & [[User:Nintendork32|^sk8rboy^]] (Mac)
| version = v 1.3
| version = v 1.3
−
| downloadraw = [[Media:ELF-DOL_Converter_windows.rar|Windows]]<br />[[Media:ELF-DOL_Converter_linux.tar.gz|Linux]]<br />[[Media:ELF-DOL_Converter_mac.tar.gz|Mac OS X]]
+
| downloadraw = [[Media:ELF-DOL_Converter_windows.rar|Windows]]<br />[[Media:ELF-DOL_Converter_linux.tar.gz|Linux]]<br />[[Media:ELF-DOL_Converter_mac.tar.gz|Mac OS X]]
| source = included
| source = included
}}
}}
Line 14:
Line 22:
== What do I do? ==
== What do I do? ==
−
There are 3 files in the 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_converter file and follow the directions on the screen. On Linux and on Mac OS X you may need to do <tt>chmod +x elf-dol_converter.sh</tt> first. When you are done, you can leave the files on your SD card, or remove them, whatever floats yer boat.
+
There are 3 files in the 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_converter file and follow the directions on the screen. On Linux and on Mac OS X you may need to do <tt>chmod +x elf-dol_converter.sh</tt> first. When you are done, you can leave the files on your SD card, or remove them, whatever floats yer boat.
−
<youtube>x8AoUhpDZtc</youtube>
+
<youtube>x8AoUhpDZtc</youtube>
== What does it do? ==
== What does it do? ==
Line 52:
Line 60:
! Code !! Explanation
! Code !! Explanation
|-
|-
−
| <tt>@ ECHO off</tt> || Makes it so only lines that start with 'echo' will print on the screen.
+
| <tt>@ ECHO off</tt> || Makes it so only lines that start with 'echo' will print on the screen.
|-
|-
−
| colspan="2"| <tt>echo This will delete your old boot.elf files when it's done.</tt>
+
| colspan="2"| <tt>echo This will delete your old boot.elf files when it's done.</tt>
|-
|-
−
| colspan="2"| <tt>echo So if you have some perverse attachment to them, figure something out.</tt>
+
| colspan="2"| <tt>echo So if you have some perverse attachment to them, figure something out.</tt>
|-
|-
−
| colspan="2"| <tt>echo Press ctrl+c to NOT continue.</tt>
+
| colspan="2"| <tt>echo Press ctrl+c to NOT continue.</tt>
|-
|-
−
| <tt>echo.</tt> || Makes a blank line.
+
| <tt>echo.</tt> || Makes a blank line.
|-
|-
−
| <tt>pause</tt> || Asks you to press the "Any" key (not shift) :P
+
| <tt>pause</tt> || Asks you to press the "Any" key (not shift) :P
|-
|-
−
| colspan="2"| <tt>echo.</tt>
+
| colspan="2"| <tt>echo.</tt>
|-
|-
−
| <tt>for /R %%f in (.) do if exist "%%f\boot.elf" (</tt> || Makes %%f hold the path to every directory in this directory, one by one. But not any directories under those.
+
| <tt>for /R %%f in (.) do if exist "%%f\boot.elf" (</tt> || Makes %%f hold the path to every directory in this directory, one by one. But not any directories under those.
|-
|-
−
| colspan="2"| <tt>powerpc-gekko-objcopy.exe -O binary "%%f\boot.elf" "%%f\boot.dol"</tt>
+
| colspan="2"| <tt>powerpc-gekko-objcopy.exe -O binary "%%f\boot.elf" "%%f\boot.dol"</tt>
|-
|-
−
| <tt>if exist "%%f\boot.dol" (del "%%f\boot.elf")</tt> || If it worked, erase the .elf.
+
| <tt>if exist "%%f\boot.dol" (del "%%f\boot.elf")</tt> || If it worked, erase the .elf.
|-
|-
−
| colspan="2"| <tt>)</tt>
+
| colspan="2"| <tt>)</tt>
|-
|-
−
| colspan="2"| <tt>echo Done!</tt>
+
| colspan="2"| <tt>echo Done!</tt>
|-
|-
−
| colspan="2"| <tt>pause</tt>
+
| colspan="2"| <tt>pause</tt>
|}
|}