alteredgenome / priiloader

Automatically exported from code.google.com/p/priiloader
0 stars 0 forks source link

Testing v0.8(beta v2) - Problem #177

Open GoogleCodeExporter opened 9 years ago

GoogleCodeExporter commented 9 years ago
What steps will reproduce the problem?
1.install a .dol for autoboot (wiiflow)
2.press POWERON wii
3.press RESET

What is the expected output? What do you see instead?
boot to priiloader - codedump 

i have to boot from a shortcut in hbc to launch priiloader - but there is no 
problem booting priiloader..
after i reinstalled priiloader booting from RESET works fine
but when i made a .dol autoboot again i can´t acces priiloader anymore 
output code (booting sm etc.) doesn´t work, too in this beta...
going back to v0.7 - everything works like ever:(

What version of priiloader are you using? On what ios/system menu?
v0.8(beta v2)

Do you have any IOS patches installed? (if so which ios and what patch?)
sysCheck v2.1.0b14 
Region: PAL
Systemmenue 4.3E (v514)
Priiloader installiert
Das Laufwerk unterstuetzt DVDs
Homebrewkanal 1.0.8 benutzt IOS58
Hollywood v0x11
Konsolen-ID: xxxxxxxx
Boot2 v4
IOS36 (rev 3608): Trucha Bug, ES Identify, NAND Zugriff
IOS80 (rev 6944): Trucha Bug, NAND Zugriff
IOS202[60] (rev 65535, Info: Hermes-v55.1): Trucha Bug, NAND Zugriff, USB 2.0
IOS222[38] (rev 65535, Info: Hermes-v55.1): Trucha Bug, ES Identify, NAND 
Zugriff, USB 2.0
IOS223[37] (rev 65535, Info: Hermes-v55.1): Trucha Bug, NAND Zugriff, USB 2.0
IOS224[57] (rev 65535, Info: Hermes-v55.1): Trucha Bug, NAND Zugriff, USB 2.0
IOS225[57] (rev 65535, Info: hermes-v5.1): Trucha Bug, NAND Zugriff
IOS236[36] (rev 65535, Info: rev 3351): Trucha Bug, ES Identify, NAND Zugriff
IOS245[37] (rev 21007, Info: d2x-v7beta1d): Trucha Bug, NAND Zugriff, USB 2.0
IOS246[38] (rev 21007, Info: d2x-v7beta1d): Trucha Bug, ES Identify, NAND 
Zugriff
IOS247[53] (rev 21007, Info: d2x-v7beta1d): Trucha Bug, NAND Zugriff, USB 2.0
IOS248[55] (rev 21007, Info: d2x-v7beta1d): Trucha Bug, NAND Zugriff, USB 2.0
IOS249[57] (rev 21006, Info: d2x-v6): Trucha Bug, NAND Zugriff, USB 2.0
IOS250[38] (rev 21006, Info: d2x-v6): Trucha Bug, ES Identify, NAND Zugriff
IOS251[58] (rev 21007, Info: d2x-v7beta1d): Trucha Bug, NAND Zugriff, USB 2.0
IOS253 (rev 65535): NANDEmu
IOS254 (rev 65281): BootMii
BC v6
MIOS v10

What are your wii system menu settings
default - no modified skin - only block updates..

PS: PRIILOADER ROCKS!

greetings from germany
senseless-creature
;)

Original issue reported on code.google.com by senseles...@web.de on 24 Oct 2011 at 8:43

GoogleCodeExporter commented 9 years ago
[deleted comment]
GoogleCodeExporter commented 9 years ago
i think i deleted slot80 before i installed 4.3 - not shure
and i formatted my sdhc card before downgrade;)

Original comment by senseles...@web.de on 29 Nov 2011 at 7:03

GoogleCodeExporter commented 9 years ago
Formatted ? What to ? Fat32 ? 

And I tried it now again with and without empty 80 slot - always smae .

Original comment by nuda1...@gmail.com on 29 Nov 2011 at 7:57

GoogleCodeExporter commented 9 years ago
i format to fat32.
have you tried some other sdhc? uninstalling an re-installing sm and smios 
should normally fix every issue known... 
can u post syscheck?

Original comment by senseles...@web.de on 29 Nov 2011 at 10:14

GoogleCodeExporter commented 9 years ago
dont uninstall SM (the ios can be uninstalled but be careful). it could cause a 
brick

Original comment by dac...@gmail.com on 30 Nov 2011 at 7:18

GoogleCodeExporter commented 9 years ago
installing a new SM over the old should be fine tho

Original comment by dac...@gmail.com on 2 Dec 2011 at 8:29

GoogleCodeExporter commented 9 years ago
Hi , I am at my cousin now . INTERNET :D 

So , I tried my other TV . One thing I noticed : Changing to 50 hz , 60 and 50 
again freezes Wii . 

Nevermind , will format to fat32 AGAIN after got Internet . And I got an 
simmilar problem with SavegameManagerGX : DSI then 20 seconds timer and 
everything from SD card earsed ( even nand backup ... SHIIIIIIIIIIIIIII-- ) .. 

Angel

Original comment by nuda1...@gmail.com on 7 Jan 2012 at 4:15

GoogleCodeExporter commented 9 years ago
just a question, but has anyone tried to format their SD/USB or do a chkdsk on 
it? (start->(on vista and XP hit run then ->)cmd->chkdsk E:\ /f , replace E 
with the letter of your SD 

Original comment by dac...@gmail.com on 3 Mar 2012 at 9:24

GoogleCodeExporter commented 9 years ago
Nope ... gonna try after setting up windows 7 because I dropped back from 
windows nt 6.2 dev preview

Original comment by nuda1...@gmail.com on 13 Apr 2012 at 12:30

GoogleCodeExporter commented 9 years ago
and...?

Original comment by dac...@gmail.com on 1 May 2012 at 7:18

GoogleCodeExporter commented 9 years ago
Same ... simple Exception ... 

In Java we have got 
try {
 crashing code in here
} catch (Throwable t) {
}
which catches exceptions / throwables . What's with C/C++/C# ?

Original comment by nuda1...@gmail.com on 1 May 2012 at 8:51

GoogleCodeExporter commented 9 years ago
C++ has exceptions in the sense you are thinking, but there is another type of 
exception that can't be gracefully handled that simply can't be handled sanely, 
primarily access violations (trying to read/write to areas of memory you don't 
have access to) which are normally caused by using a pointer to a deleted 
object, going pasts the bounds on an array, or compiling and linking against 
different signatures.  You don't have these issues in Java because is it is a 
managed language (you run it in a VM).

Original comment by DRa...@gmail.com on 5 Jul 2012 at 4:55

GoogleCodeExporter commented 9 years ago
C/C++ is indeed different. the crash says it died around the mounting. but for 
all we know it is indeed a case of memory failure and it failed somewhere 
completely else. the problem i have is that it could be alot and yet so little. 
i dont do much between start of my code and the crash (sd mount). however 
libogc does alot and that changes everything imo :/

Original comment by dac...@gmail.com on 5 Jul 2012 at 6:20

GoogleCodeExporter commented 9 years ago
PS : the issue is triggered by pressing reset in main menu while dump gecko 
output is enabled. if ANYONE can figure it out do tell me

Original comment by dac...@gmail.com on 27 Sep 2012 at 6:44