<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
		>
<channel>
	<title>Comments on: Wii Recovery Dongle</title>
	<atom:link href="http://hackmii.com/2008/09/wii-recovery-dongle/feed/" rel="self" type="application/rss+xml" />
	<link>http://hackmii.com/2008/09/wii-recovery-dongle/</link>
	<description>Notes from inside your Wii</description>
	<lastBuildDate>Wed, 24 Feb 2010 07:54:55 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: SaveMii (Wii Recovery Dongle) - Console Scene Forums</title>
		<link>http://hackmii.com/2008/09/wii-recovery-dongle/comment-page-1/#comment-3005</link>
		<dc:creator>SaveMii (Wii Recovery Dongle) - Console Scene Forums</dc:creator>
		<pubDate>Sun, 21 Sep 2008 21:00:43 +0000</pubDate>
		<guid isPermaLink="false">http://hackmii.com/?p=132#comment-3005</guid>
		<description>[...] (Wii Recovery Dongle)      The Wii Recovery Dongle news has been our for some time now. I have recently recieved some of these to play around with [...]</description>
		<content:encoded><![CDATA[<p>[...] (Wii Recovery Dongle)      The Wii Recovery Dongle news has been our for some time now. I have recently recieved some of these to play around with [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: WiiCrazy</title>
		<link>http://hackmii.com/2008/09/wii-recovery-dongle/comment-page-1/#comment-2979</link>
		<dc:creator>WiiCrazy</dc:creator>
		<pubDate>Thu, 11 Sep 2008 22:50:36 +0000</pubDate>
		<guid isPermaLink="false">http://hackmii.com/?p=132#comment-2979</guid>
		<description>I&#039;m working on the freeloader disassembly and stuck in a few places and got some questions.

Here is the thread about my exploration...
http://forum.wiibrew.org/read.php?8,1693

I really need a few concrete menu patches and some advice. Hope I get some.</description>
		<content:encoded><![CDATA[<p>I&#8217;m working on the freeloader disassembly and stuck in a few places and got some questions.</p>
<p>Here is the thread about my exploration&#8230;<br />
<a href="http://forum.wiibrew.org/read.php?8,1693" rel="nofollow">http://forum.wiibrew.org/read.php?8,1693</a></p>
<p>I really need a few concrete menu patches and some advice. Hope I get some.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: FGOD</title>
		<link>http://hackmii.com/2008/09/wii-recovery-dongle/comment-page-1/#comment-2977</link>
		<dc:creator>FGOD</dc:creator>
		<pubDate>Thu, 11 Sep 2008 17:17:36 +0000</pubDate>
		<guid isPermaLink="false">http://hackmii.com/?p=132#comment-2977</guid>
		<description>hmmm is there any thought if this might help my banner brick? 

i have 3.3 with tp hack(at least i hope so, can&#039;t remember deleting it from my system)

it just stops after the warning screen, leaving a black screen and menu music and the mote keep connected.

Now i know i would still need to buy a chip. but are there any chips that can autoboot without the starfall or without the dongle?

and if not, when will you guys show how you made this so people can be helped out with this?</description>
		<content:encoded><![CDATA[<p>hmmm is there any thought if this might help my banner brick? </p>
<p>i have 3.3 with tp hack(at least i hope so, can&#8217;t remember deleting it from my system)</p>
<p>it just stops after the warning screen, leaving a black screen and menu music and the mote keep connected.</p>
<p>Now i know i would still need to buy a chip. but are there any chips that can autoboot without the starfall or without the dongle?</p>
<p>and if not, when will you guys show how you made this so people can be helped out with this?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: bushing</title>
		<link>http://hackmii.com/2008/09/wii-recovery-dongle/comment-page-1/#comment-2974</link>
		<dc:creator>bushing</dc:creator>
		<pubDate>Tue, 09 Sep 2008 05:27:47 +0000</pubDate>
		<guid isPermaLink="false">http://hackmii.com/?p=132#comment-2974</guid>
		<description>@IBNobody:   Marcan&#039;s working on a proper writeup of the device, and I&#039;m working on a proper writeup of how it works from a software perspective, but the short version is:

1) It&#039;s a hand-made device that plugs into the memory-card slot (closer to a USBGecko than to a memory card, but much simpler)

2) The system menu queries the EXI ID of any devices present in the memory card slot upon bootup, at the end of main().  If it detects the right ID, it runs BS2BootIRD(); otherwise, it executes BS2Entry() (which then calls mainmenu(), which then calls ipl::System::init and ipl::System:run).

3) disassembly of the system menu.  

4) Likely.  We&#039;ve concentrated on looking for a lower-level tool that would explain how they were doing the initial NAND flash programming, etc, so I initially overlooked the significance of this.

If the bootup sequence goes something like this:
* boot0
* boot1
* boot2
* mount NAND filesystem
* load System Menu
* load IOS30
* Run system menu
* main()
* load settings.txt and SYSCONF from NAND (?)
* check for dongle
* load resources from NAND (including HTML resources)
* load list of channels, including all banners
* display &quot;channel screen&quot;

... you&#039;ll see that this will only make a difference if the boot process gets all the way from boot0 to the dongle check.  Thus, if the system menu dies during those last three steps, you can use an appropriately created disk to fix the problem.

In this case, &quot;appropriately created&quot; means &quot;a valid Wii disc with a valid signature that has a valid system update on it, or passes BS2IsDiagDisc(), or both&quot;.</description>
		<content:encoded><![CDATA[<p>@IBNobody:   Marcan&#8217;s working on a proper writeup of the device, and I&#8217;m working on a proper writeup of how it works from a software perspective, but the short version is:</p>
<p>1) It&#8217;s a hand-made device that plugs into the memory-card slot (closer to a USBGecko than to a memory card, but much simpler)</p>
<p>2) The system menu queries the EXI ID of any devices present in the memory card slot upon bootup, at the end of main().  If it detects the right ID, it runs BS2BootIRD(); otherwise, it executes BS2Entry() (which then calls mainmenu(), which then calls ipl::System::init and ipl::System:run).</p>
<p>3) disassembly of the system menu.  </p>
<p>4) Likely.  We&#8217;ve concentrated on looking for a lower-level tool that would explain how they were doing the initial NAND flash programming, etc, so I initially overlooked the significance of this.</p>
<p>If the bootup sequence goes something like this:<br />
* boot0<br />
* boot1<br />
* boot2<br />
* mount NAND filesystem<br />
* load System Menu<br />
* load IOS30<br />
* Run system menu<br />
* main()<br />
* load settings.txt and SYSCONF from NAND (?)<br />
* check for dongle<br />
* load resources from NAND (including HTML resources)<br />
* load list of channels, including all banners<br />
* display &#8220;channel screen&#8221;</p>
<p>&#8230; you&#8217;ll see that this will only make a difference if the boot process gets all the way from boot0 to the dongle check.  Thus, if the system menu dies during those last three steps, you can use an appropriately created disk to fix the problem.</p>
<p>In this case, &#8220;appropriately created&#8221; means &#8220;a valid Wii disc with a valid signature that has a valid system update on it, or passes BS2IsDiagDisc(), or both&#8221;.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: IBNobody</title>
		<link>http://hackmii.com/2008/09/wii-recovery-dongle/comment-page-1/#comment-2973</link>
		<dc:creator>IBNobody</dc:creator>
		<pubDate>Tue, 09 Sep 2008 02:05:01 +0000</pubDate>
		<guid isPermaLink="false">http://hackmii.com/?p=132#comment-2973</guid>
		<description>I&#039;m less interested in the recovery mode as I am the actual device. 

Is the device a modified memory card, or is it something else?

How does the device put the Wii into recovery mode? 

How did you find it? 

Do you believe that this is the factory tool that is used with a factory disk to recover dead Wii&#039;s sent in via warranty claims? (Like the previous factory blog posts, I am curious as to how they repair RMA&#039;d or yield defects.)</description>
		<content:encoded><![CDATA[<p>I&#8217;m less interested in the recovery mode as I am the actual device. </p>
<p>Is the device a modified memory card, or is it something else?</p>
<p>How does the device put the Wii into recovery mode? </p>
<p>How did you find it? </p>
<p>Do you believe that this is the factory tool that is used with a factory disk to recover dead Wii&#8217;s sent in via warranty claims? (Like the previous factory blog posts, I am curious as to how they repair RMA&#8217;d or yield defects.)</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: marcan</title>
		<link>http://hackmii.com/2008/09/wii-recovery-dongle/comment-page-1/#comment-2972</link>
		<dc:creator>marcan</dc:creator>
		<pubDate>Mon, 08 Sep 2008 15:15:12 +0000</pubDate>
		<guid isPermaLink="false">http://hackmii.com/?p=132#comment-2972</guid>
		<description>Without a modchip you&#039;ll need pressed autoboot discs. Since those currently don&#039;t exist (for us), you won&#039;t be able to boot any code without a modchip. However, it will install updates from retail games (although it won&#039;t boot them), so you can still use it to fix wrong system menu bricks if you wait until a new version is released with a game.

Twilight Princess is still the only way of running homebrew for unchipped users.</description>
		<content:encoded><![CDATA[<p>Without a modchip you&#8217;ll need pressed autoboot discs. Since those currently don&#8217;t exist (for us), you won&#8217;t be able to boot any code without a modchip. However, it will install updates from retail games (although it won&#8217;t boot them), so you can still use it to fix wrong system menu bricks if you wait until a new version is released with a game.</p>
<p>Twilight Princess is still the only way of running homebrew for unchipped users.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: gamefreakfatty</title>
		<link>http://hackmii.com/2008/09/wii-recovery-dongle/comment-page-1/#comment-2971</link>
		<dc:creator>gamefreakfatty</dc:creator>
		<pubDate>Mon, 08 Sep 2008 15:07:13 +0000</pubDate>
		<guid isPermaLink="false">http://hackmii.com/?p=132#comment-2971</guid>
		<description>I&#039;ve been looking at Wii homebrew and came across this last Thursday. I&#039;ve just recently been able to do Wii homebrew (haven&#039;t been able to get Twilight Princess until Saturday.) I have some questions about this.

1) (With an unchipped Wii) Do you have to use pressed autoboot disks to make this work, or can it used burned autoboot disks as well?
2) If it can used burned autoboot disks (without a drivechip) would it work with your Open-Source Apploader ISO Template? For example: to boot the HBC installer.
3) Do you have plans to release how you did this? Maybe a guide or tutorial on how to make it? Maybe schematics or something?

If it doesn&#039;t require a drivechip to work, then it could be a great alternative to getting homebrew working on my friends&#039; Wiis without having to worry about scratching Twilight Princess. That way I could just burn a disk with the HBC installer with it set to autoboot and use that instead.</description>
		<content:encoded><![CDATA[<p>I&#8217;ve been looking at Wii homebrew and came across this last Thursday. I&#8217;ve just recently been able to do Wii homebrew (haven&#8217;t been able to get Twilight Princess until Saturday.) I have some questions about this.</p>
<p>1) (With an unchipped Wii) Do you have to use pressed autoboot disks to make this work, or can it used burned autoboot disks as well?<br />
2) If it can used burned autoboot disks (without a drivechip) would it work with your Open-Source Apploader ISO Template? For example: to boot the HBC installer.<br />
3) Do you have plans to release how you did this? Maybe a guide or tutorial on how to make it? Maybe schematics or something?</p>
<p>If it doesn&#8217;t require a drivechip to work, then it could be a great alternative to getting homebrew working on my friends&#8217; Wiis without having to worry about scratching Twilight Princess. That way I could just burn a disk with the HBC installer with it set to autoboot and use that instead.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: WiiCrazy</title>
		<link>http://hackmii.com/2008/09/wii-recovery-dongle/comment-page-1/#comment-2969</link>
		<dc:creator>WiiCrazy</dc:creator>
		<pubDate>Sat, 06 Sep 2008 19:09:53 +0000</pubDate>
		<guid isPermaLink="false">http://hackmii.com/?p=132#comment-2969</guid>
		<description>There were no possibilities to test my wii with another drive. Yet I saw the actual chip sitting in my wii, it was not a d2ckey but a clone one...
here this one
http://www.alibaba.com/product-tp/101180653/D2c_Pro_Gw601_Mod_Chip_31.html

Can anyone confirm that this chip actually doesn&#039;t support autoboot?</description>
		<content:encoded><![CDATA[<p>There were no possibilities to test my wii with another drive. Yet I saw the actual chip sitting in my wii, it was not a d2ckey but a clone one&#8230;<br />
here this one<br />
<a href="http://www.alibaba.com/product-tp/101180653/D2c_Pro_Gw601_Mod_Chip_31.html" rel="nofollow">http://www.alibaba.com/product-tp/101180653/D2c_Pro_Gw601_Mod_Chip_31.html</a></p>
<p>Can anyone confirm that this chip actually doesn&#8217;t support autoboot?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: marcan</title>
		<link>http://hackmii.com/2008/09/wii-recovery-dongle/comment-page-1/#comment-2968</link>
		<dc:creator>marcan</dc:creator>
		<pubDate>Sat, 06 Sep 2008 18:11:05 +0000</pubDate>
		<guid isPermaLink="false">http://hackmii.com/?p=132#comment-2968</guid>
		<description>What matters is the updated IOS30, which comes with System Menu 3.3. The System Menu doesn&#039;t matter, at all. It has nothing to do with the fakesigning fix. The IOS30 update just happened to come alongside the 3.3 update, so it&#039;s the easiest way of knowing whether you can run fakesigned discs or not, assuming you haven&#039;t done anything strange. You could downgrade to 3.2 and it wouldn&#039;t help. You could downgrade IOS30 to the old version and then fakesigned discs will start working, even if you have System Menu 3.3.

If you haven&#039;t done anything strange, then 3.2 vs. 3.3 works to tell whether fakesigned discs will work. If you&#039;ve screwed with your system (downgrades or whatever), then you should know whether you&#039;re using the new IOS30 or the old IOS30, and that&#039;s what matters.</description>
		<content:encoded><![CDATA[<p>What matters is the updated IOS30, which comes with System Menu 3.3. The System Menu doesn&#8217;t matter, at all. It has nothing to do with the fakesigning fix. The IOS30 update just happened to come alongside the 3.3 update, so it&#8217;s the easiest way of knowing whether you can run fakesigned discs or not, assuming you haven&#8217;t done anything strange. You could downgrade to 3.2 and it wouldn&#8217;t help. You could downgrade IOS30 to the old version and then fakesigned discs will start working, even if you have System Menu 3.3.</p>
<p>If you haven&#8217;t done anything strange, then 3.2 vs. 3.3 works to tell whether fakesigned discs will work. If you&#8217;ve screwed with your system (downgrades or whatever), then you should know whether you&#8217;re using the new IOS30 or the old IOS30, and that&#8217;s what matters.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: wowfunhappy</title>
		<link>http://hackmii.com/2008/09/wii-recovery-dongle/comment-page-1/#comment-2967</link>
		<dc:creator>wowfunhappy</dc:creator>
		<pubDate>Sat, 06 Sep 2008 18:05:56 +0000</pubDate>
		<guid isPermaLink="false">http://hackmii.com/?p=132#comment-2967</guid>
		<description>&quot;That’s the kind of thing that this will let you fix, but only if you’ve never had the 3.3 update installed.&quot;

Because I&#039;m curious, why would it matter, as long as you&#039;ve downgraded. Doesn&#039;t downgrading reverse all the effects of upgrading? If not... what exactly ISN&#039;T reversed that doesn&#039;t allow this dongle to fix the problem?</description>
		<content:encoded><![CDATA[<p>&#8220;That’s the kind of thing that this will let you fix, but only if you’ve never had the 3.3 update installed.&#8221;</p>
<p>Because I&#8217;m curious, why would it matter, as long as you&#8217;ve downgraded. Doesn&#8217;t downgrading reverse all the effects of upgrading? If not&#8230; what exactly ISN&#8217;T reversed that doesn&#8217;t allow this dongle to fix the problem?</p>
]]></content:encoded>
	</item>
</channel>
</rss>
