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

Difference between revisions of "Geckoloader"

From WiiBrew
Jump to navigation Jump to search
(v0.0.4 gamecube edition)
m (Reverted spam html code)
 
(8 intermediate revisions by 6 users not shown)
Line 1: Line 1:
{{Infobox homebrewapp
+
{{cleanup}}
 +
{{Infobox homebrew
 
| title      = geckoloader
 
| title      = geckoloader
| image      =
+
| type        = loader
| desc        =
+
| author      = [[User:Dhewg|Dhewg]]
| type        = Loaders
+
| download    = Media:Geckoloader-0.0.3.tgz
| author      = [[User:Dhewg|Dhewg]], #wiidev efnet/blitzed
 
| display    =
 
| download    = [[media:Geckoloader-0.0.3.tgz|v0.0.3]]
 
| source      =
 
 
| peripherals = {{GCNController}} {{USBGecko}}
 
| peripherals = {{GCNController}} {{USBGecko}}
 
}}
 
}}
Line 14: Line 11:
 
a client tool to transfer such files is included.
 
a client tool to transfer such files is included.
  
==Requirements==
+
== Requirements ==
 
:*a usbgecko adapter
 
:*a usbgecko adapter
 
:*a way to boot Wii homebrew
 
:*a way to boot Wii homebrew
  
==Features==
+
== Features ==
 
:*100% native Wii mode
 
:*100% native Wii mode
 
:*no medium ejecting, rewriting and inserting required whatsoever
 
:*no medium ejecting, rewriting and inserting required whatsoever
Line 26: Line 23:
 
:*as always, this is open source ;)
 
:*as always, this is open source ;)
  
==Architecture==
+
== Architecture ==
 
:geckoloader consists of 3 parts
 
:geckoloader consists of 3 parts
 
::*stub
 
::*stub
Line 39: Line 36:
 
:the chosen architecture has the advantage that the tiny stub is the only component which has to stay intact in memory. while the usage of the usbgecko onboard flash might seem unnecessary at first, its purpose is the reloading feature. you will upload and run Wii applications. these in return will allocate memory and write to it. if the loader code would stay somewhere in memory, any executed application might overwrite it this way, but since it sits on the onboard usbgecko flash, no application can corrupt it.
 
:the chosen architecture has the advantage that the tiny stub is the only component which has to stay intact in memory. while the usage of the usbgecko onboard flash might seem unnecessary at first, its purpose is the reloading feature. you will upload and run Wii applications. these in return will allocate memory and write to it. if the loader code would stay somewhere in memory, any executed application might overwrite it this way, but since it sits on the onboard usbgecko flash, no application can corrupt it.
  
==Build==
+
== Build ==
 
:'''hint:''' a precompiled binary is included
 
:'''hint:''' a precompiled binary is included
  
Line 49: Line 46:
 
:run <code>make install</code> to copy <code>geckoupload</code> (the client) to <code>$DEVKITPPC/bin</code>
 
:run <code>make install</code> to copy <code>geckoupload</code> (the client) to <code>$DEVKITPPC/bin</code>
  
==Usage==
+
== Usage ==
  
===Wii-side===
+
=== Wii-side ===
:*use the [[Twilight_Hack|Twilight hack]] in combination with the included geckoloader.elf to get this running
+
:*use the [[Twilight Hack|Twilight hack]] in combination with the included geckoloader.elf to get this running
 
:*the boot code will show up
 
:*the boot code will show up
 
::*you have to write the loader code to the onboard usbgecko flash once, press the Wii RESET button when asked to
 
::*you have to write the loader code to the onboard usbgecko flash once, press the Wii RESET button when asked to
Line 62: Line 59:
 
:'''hint:''' try to upload the included <code>test.elf</code> first. it just prints a string to screen and has an option to jump back to the loader
 
:'''hint:''' try to upload the included <code>test.elf</code> first. it just prints a string to screen and has an option to jump back to the loader
  
===Client-side===
+
=== Client-side ===
 
:*the client uses a default tty device (except on windows), you can overwrite it using the environment variable <code>USBGECKODEVICE</code>
 
:*the client uses a default tty device (except on windows), you can overwrite it using the environment variable <code>USBGECKODEVICE</code>
 
:*Set USBGECKODEVICE too the com your device uses (example, COM4)
 
:*Set USBGECKODEVICE too the com your device uses (example, COM4)
Line 74: Line 71:
 
:*gamecube .dol's to the official usbgecko boot dvd
 
:*gamecube .dol's to the official usbgecko boot dvd
  
==Windows Driver Setup==
+
== Windows Driver Setup ==
 
If your USBGecko install didn't provide you with a COM port then try the following:
 
If your USBGecko install didn't provide you with a COM port then try the following:
 
# Go to device manager and select the device 'USB Serial Converter' which is the USB Gecko device.  
 
# Go to device manager and select the device 'USB Serial Converter' which is the USB Gecko device.  
Line 83: Line 80:
 
This should now give you a COM port, which you will need for geckoupload.
 
This should now give you a COM port, which you will need for geckoupload.
  
==Notes==
+
== Notes ==
 
:*you can not run GameCube binaries with this loader since we're working in Wii mode here (that's a good thing)
 
:*you can not run GameCube binaries with this loader since we're working in Wii mode here (that's a good thing)
 
:*the default libogc base address for Wii homebrew is at 0x80003f00. this gives a PSO compatible stub 0x1900 bytes of memory for code. hence, the stub's main() functions were written in c so that it's easy to improve/fix
 
:*the default libogc base address for Wii homebrew is at 0x80003f00. this gives a PSO compatible stub 0x1900 bytes of memory for code. hence, the stub's main() functions were written in c so that it's easy to improve/fix
Line 89: Line 86:
 
:*you can use the trucha signer to boot this app straight from dvd
 
:*you can use the trucha signer to boot this app straight from dvd
  
==Thanks==
+
== Thanks ==
 
:*shagkur, for helping me getting the stub working and providing the linkerscript
 
:*shagkur, for helping me getting the stub working and providing the linkerscript
 
:*the [[DevkitPro|devkitpro]] team
 
:*the [[DevkitPro|devkitpro]] team
Line 96: Line 93:
 
:*nuke for sharing code for his adapter
 
:*nuke for sharing code for his adapter
  
==Download==
+
== Download ==
===v0.0.4 - gamecube edition===
+
=== v0.0.4 - gamecube edition ===
:[http://forum.wiibrew.org/read.php?17,1239]
+
:[http://forum.wiibrew.org/read.php?17,1239 release thread]
  
===v0.0.3===
+
=== v0.0.3 ===
:[[media:Geckoloader-0.0.3.tgz|geckoloader-0.0.3.tgz]]
+
:[[Media:Geckoloader-0.0.3.tgz|geckoloader-0.0.3.tgz]]
  
===v0.0.2b===
+
=== v0.0.2b ===
:[[media:Geckoloader-0.0.2b.tgz|geckoloader-0.0.2b.tgz]]
+
:[[Media:Geckoloader-0.0.2b.tgz|geckoloader-0.0.2b.tgz]]
  
===v0.0.2===
+
=== v0.0.2 ===
:[[media:Geckoloader-0.0.2.tgz|geckoloader-0.0.2.tgz]]
+
:[[Media:Geckoloader-0.0.2.tgz|geckoloader-0.0.2.tgz]]
  
==Changelog==
+
== Changelog ==
  
 
:*v0.0.4
 
:*v0.0.4
Line 132: Line 129:
 
:*v0.0.2
 
:*v0.0.2
 
::*first public release
 
::*first public release
[[Category:Homebrew applications]]
 
[[Category:Loaders|Gecko]]
 

Latest revision as of 20:59, 25 November 2010

geckoloader
General
Author(s)Dhewg
TypeLoader
Links
Download
Peripherals
GameCube Controller USBGecko2.svg

geckoloader is a native Wii application which helps you to load and execute Wii homebrew binaries in the easiest and fastest way possible. It acts as a server which will receive binaries directly using a usbgecko adapter. a client tool to transfer such files is included.

Requirements

  • a usbgecko adapter
  • a way to boot Wii homebrew

Features

  • 100% native Wii mode
  • no medium ejecting, rewriting and inserting required whatsoever
  • this is especially useful for wii coders (fast development cycle)
  • reloading. the stub is placed at the memory location 0x80001800. this is PSO reload compatible, which means that any application can jump back there so that you can load another binary without reboot. the libogc exception handler also jumps to this address (when pressing Z on a GameCube pad)
  • the protocol used for uploading is compatible to the official geckotool (you can use your client of choice)
  • as always, this is open source ;)

Architecture

geckoloader consists of 3 parts
  • stub
  • loader
  • boot
the boot code contains the other two code parts, and it is the executable that you have to run. it will write the loader code to the onboard usbgecko flash and place the stub into memory
the boot code will then execute the stub
the stub's job is to read the loader code from flash and execute it
finally, the loader code will accept incoming Wii executables sent using a client application from the pc side
the chosen architecture has the advantage that the tiny stub is the only component which has to stay intact in memory. while the usage of the usbgecko onboard flash might seem unnecessary at first, its purpose is the reloading feature. you will upload and run Wii applications. these in return will allocate memory and write to it. if the loader code would stay somewhere in memory, any executed application might overwrite it this way, but since it sits on the onboard usbgecko flash, no application can corrupt it.

Build

hint: a precompiled binary is included
if you have compiled v0.0.2b before, remove $DEVKITPPC/powerpc-gekko/lib/stub.lds
to compile the included code, you will need devkitPPC and libogc r14 or higher
check config.h for some tuneables
run make in the root dir
run make install to copy geckoupload (the client) to $DEVKITPPC/bin

Usage

Wii-side

  • use the Twilight hack in combination with the included geckoloader.elf to get this running
  • the boot code will show up
  • you have to write the loader code to the onboard usbgecko flash once, press the Wii RESET button when asked to
  • after that you will see the loader code in action
  • use a compatible client (like the included one geckoupload, or the official windows geckotool) to send a Wii binary
  • the transfered binary should execute
  • if you loaded a game/app which has an option to jump back to 0x80001800, you will be presented with the loader code again. from there, you can transfer another binary again (no reboot required)
hint: try to upload the included test.elf first. it just prints a string to screen and has an option to jump back to the loader

Client-side

  • the client uses a default tty device (except on windows), you can overwrite it using the environment variable USBGECKODEVICE
  • Set USBGECKODEVICE too the com your device uses (example, COM4)
  • RESTART AFTER SETTING YOUR ENV VAR !!! ELSE IT WILL NOT WORK
  • make sure that your console is ready to receive an executable
  • pass the filename of the binary to geckoupload, for example:
geckoupload test.elf
you can use this client to transfer
  • wii .dol's and .elf's to the geckoloader described on this page
  • gamecube .dol's to the official usbgecko boot dvd

Windows Driver Setup

If your USBGecko install didn't provide you with a COM port then try the following:

  1. Go to device manager and select the device 'USB Serial Converter' which is the USB Gecko device.
  2. Right click and select properties, then go to the 'advanced' tab.
  3. Click the 'Load VCP' box so its selected then press ok.
  4. Unplug the cable and then reinsert.

This should now give you a COM port, which you will need for geckoupload.

Notes

  • you can not run GameCube binaries with this loader since we're working in Wii mode here (that's a good thing)
  • the default libogc base address for Wii homebrew is at 0x80003f00. this gives a PSO compatible stub 0x1900 bytes of memory for code. hence, the stub's main() functions were written in c so that it's easy to improve/fix
  • the loader initially puts a received binary in MEM2 to avoid overlaps. it will be relocated from there. unfortunately the loader itself has a base address in MEM1. putting it in MEM2 is on my TODO list
  • you can use the trucha signer to boot this app straight from dvd

Thanks

  • shagkur, for helping me getting the stub working and providing the linkerscript
  • the devkitpro team
  • team tweezers for making all of this possible
  • all open source Wii coders
  • nuke for sharing code for his adapter

Download

v0.0.4 - gamecube edition

release thread

v0.0.3

geckoloader-0.0.3.tgz

v0.0.2b

geckoloader-0.0.2b.tgz

v0.0.2

geckoloader-0.0.2.tgz

Changelog

  • v0.0.4
  • HBC assimilated geckoloader. v0.0.4 is a pure gamecube-only version
  • v0.0.3
  • a gamecube pad isn't required anymore, the wii reset button is used to confirm the flash process
  • the loader code is executed straight away if it has been flashed before (no interaction required)
  • .elf file support thanks to tmbinc
  • the stub doesn't overwrite the globals anymore, fixed by WinterMute
  • a received binary is now written to MEM2 before relocating
  • ported the client to win32 (binary included)
  • the client now uses default device names on linux and os x
  • the audio and dsp subsystems are initialized on reloading (no more annoying noise)
  • v0.0.2b
  • fixed a timing issue in the usbgecko flash code. since i couldn't reproduce this on my setup, thanks go out to bLAStY and NoNameNo for helping me hunting this one down
  • the included client now works on os x thanks to bushing
  • added an extra check for malformed .dol files (some doltool converted .elf's)
  • included a tiny test application
  • v0.0.2
  • first public release