Wii U not booting - Next Steps?

V10lator

Well-Known Member
Member
Joined
Apr 21, 2019
Messages
2,687
Trophies
1
Age
36
XP
5,671
Country
Germany
Well, when you connect it and type sudo dmesg you should see something along the lines
Code:
[1022142.336215] sd 11:0:0:0: Attached scsi generic sg10 type 0
[1022142.336760] sd 11:0:0:0: [sdj] 488570880 512-byte logical blocks: (250 GB/233 GiB)
[1022142.338010] sd 11:0:0:0: [sdj] Write Protect is off
[1022142.338017] sd 11:0:0:0: [sdj] Mode Sense: 43 00 00 00
[1022142.339013] sd 11:0:0:0: [sdj] Write cache: disabled, read cache: enabled, doesn't support DPO or FUA
[1022142.352006]  sdj: sdj1 sdj2 sdj3
[1022142.352098] sd 11:0:0:0: [sdj] Attached SCSI removable disk
Note that this is just an example and you might see something different (sdb, sdc, sdd, sde, ...). The important line is this one:
Code:
[1022142.352006]  sdj: sdj1 sdj2 sdj3
- this lists all the partitions and as you want the 3rd it should show at least 3, like in the example. To dump this 3rd partition you do: sudo dd if=/dev/sdj3 of=./dump.img bs=4k - again make sure you used the correct sdX, not the one from the example. This might take some time (it isn't frozen even if you don't see any output, just be patient) but you should get a dump.img file in the same folder.

//EDIT: I'm so sorry, what I told was for Linux. No idea how to do that on Windows but maybe use a live Linux DVD in a VM?
 
Last edited by V10lator,

SDIO

Well-Known Member
Member
Joined
Feb 13, 2023
Messages
2,454
Trophies
0
Age
28
XP
1,713
Country
Germany
Thanks, and I type this in the DD utility?
That won't help you, since you are on windows.

Run cmd or powershell with admin rights, then type
Code:
dd --list
Search for the entry that has the drive letter of your SD. Fine the line like this Mounted on \\.\[B]d[/B]: with the device letter in place of d.
Then you go two lines up and look a the line starting withlink to This fives you the name of the first Partition of the SD.

Then find the same line under NT Block Device Objects
You should find a block there like
Code:
\\?\Device\Harddisk1\Partition0  
     link to \\?\Device\Harddisk1\DR2  Removable media other than floppy. Block size = 512
\\?\Device\Harddisk1\Partition1  
    link to \\?\Device\Harddisk1\DP(1)0-0+3  Removable media other than floppy. Block size = 512
\\?\Device\Harddisk1\Partition2  
    link to \\?\Device\Harddisk1\DP(1)0-0+3  Removable media other than floppy. Block size = 512
With one such device entry for each partition. The link of the first one should match the link which you found via the device letter. All three partitions will be on the same Harddisk, like Harddisk1 here and count up the partition.
You will then use this device path as if for dd.

for example
Code:
dd if=\\?\Device\Harddisk1\Partition1 of=C:\path\to\somewhere\slc.bin bs=1M --progress
dd if=\\?\Device\Harddisk1\Partition2 of=C:\path\to\somewhere\mlc.bin bs=1M --progress
Replace Harddisk1 with the one you found out. It should give you a 512MiB slc.bin and a 32GB mlc.bin
 

lolorlofl

Well-Known Member
OP
Member
Joined
May 10, 2008
Messages
192
Trophies
1
Website
Visit site
XP
762
Country
Canada
That won't help you, since you are on windows.

Run cmd or powershell with admin rights, then type
Code:
dd --list
Search for the entry that has the drive letter of your SD. Fine the line like this Mounted on \\.\[B]d[/B]: with the device letter in place of d.
Then you go two lines up and look a the line starting withlink to This fives you the name of the first Partition of the SD.

Then find the same line under NT Block Device Objects
You should find a block there like
Code:
\\?\Device\Harddisk1\Partition0
     link to \\?\Device\Harddisk1\DR2  Removable media other than floppy. Block size = 512
\\?\Device\Harddisk1\Partition1
    link to \\?\Device\Harddisk1\DP(1)0-0+3  Removable media other than floppy. Block size = 512
\\?\Device\Harddisk1\Partition2
    link to \\?\Device\Harddisk1\DP(1)0-0+3  Removable media other than floppy. Block size = 512
With one such device entry for each partition. The link of the first one should match the link which you found via the device letter. All three partitions will be on the same Harddisk, like Harddisk1 here and count up the partition.
You will then use this device path as if for dd.

for example
Code:
dd if=\\?\Device\Harddisk1\Partition1 of=C:\path\to\somewhere\slc.bin bs=1M --progress
dd if=\\?\Device\Harddisk1\Partition2 of=C:\path\to\somewhere\mlc.bin bs=1M --progress
Replace Harddisk1 with the one you found out. It should give you a 512MiB slc.bin and a 32GB mlc.bin
Awesome thank you very much, I'm dumping the MLC now. Besides the 32GB partition, the other partition I had is a 1GB partition. I chose not to dump the SLC because I already dumped it from the Backup and Restore menu. Is it different than dumping it from the Format RedNAND option?

EDIT: I noticed that dumping the SLC from the Backup and Restore menu as a RAW file gives me a size of 528MB. Is that correct for the RAW dump?
Post automatically merged:

The MLC dumped with a size of 29GB and said this in the log
rawwrite dd for windows version 1.0beta1 WIN64. Written by John Newbigin <[email protected]> This program is covered by terms of the GPL Version 2. 29,760M Error reading file: 87 The parameter is incorrect. 29760+0 records in 29760+0 records out
 

SDIO

Well-Known Member
Member
Joined
Feb 13, 2023
Messages
2,454
Trophies
0
Age
28
XP
1,713
Country
Germany
Yes, because the raw also has spare data. The SLC and the MLC always need to match, because the SLC stores a cache for the MLC. In your particular case the slc backup you did earlier should match, since your eMMC is read only anyway.
 

lolorlofl

Well-Known Member
OP
Member
Joined
May 10, 2008
Messages
192
Trophies
1
Website
Visit site
XP
762
Country
Canada
Yes, because the raw also has spare data. The SLC and the MLC always need to match, because the SLC stores a cache for the MLC. In your particular case the slc backup you did earlier should match, since your eMMC is read only anyway.
Ok thanks for the clarification. What about the message I received in the dd log? Said something about an error, and the file is only 29GB (the partition that was created from the dump was only 29GB). Is this something I should be concerned about?
 

SDIO

Well-Known Member
Member
Joined
Feb 13, 2023
Messages
2,454
Trophies
0
Age
28
XP
1,713
Country
Germany
what error did you get? If the file has the same size as the partition, it should be fine

EDIT: oh that was in the last post added. I don't know what that error means, that seems to be windows specific, but I guess it just reached the end of the partition
 

lolorlofl

Well-Known Member
OP
Member
Joined
May 10, 2008
Messages
192
Trophies
1
Website
Visit site
XP
762
Country
Canada
It just says "Error reading file: 87 The parameter is incorrect."
But it has the exact same size as the partition. So it's fine?

Now that I have the MLC and SLC dumps, am I just waiting for the NAND-AID to do the rest of the work?
 

SDIO

Well-Known Member
Member
Joined
Feb 13, 2023
Messages
2,454
Trophies
0
Age
28
XP
1,713
Country
Germany
you could try to boot the wii u from the SD using redNAND. But I never did that. Maybe @Lazr1026 can help with that. For testing I would also keep the scfm on the SD.

I am also trying to add an option to minute to erase the eMMC and with that make it work again, but I need to test that first
Post automatically merged:

You could try the restore redNand option to see if your MLC is still writeable
Post automatically merged:

if it fails on writing the MLC, then you can try the attached minute, which has a "Erase MLC" option in the backup and restore menu. I didn't have the chance to test it yet, but maybe it works and makes your eMMC writable again.
 

Attachments

  • minute_mlc-erase.zip
    184.3 KB · Views: 16
Last edited by SDIO,
  • Like
Reactions: lolorlofl

peilezhang

Member
Newcomer
Joined
Aug 8, 2023
Messages
15
Trophies
0
Age
50
XP
249
Country
China
Post automatically merged:

if it fails on writing the MLC, then you can try the attached minute, which has a "Erase MLC" option in the backup and restore menu. I didn't have the chance to test it yet, but maybe it works and makes your eMMC writable again.
Hi, I was wondering what's difference between this "Erase MLC" and the plugin "wafel_destroy_mlc.ipx" for Minutes ?
 

lolorlofl

Well-Known Member
OP
Member
Joined
May 10, 2008
Messages
192
Trophies
1
Website
Visit site
XP
762
Country
Canada
I tried the "Restore NAND" option and it completed. When I tried to boot the console (without de_fuse) it went to the Wii U logo but crashed there, which is a slight improvement than before (no signal from the console).

At this point, is it booting from RedNAND on the SD card or did the Restore option just write everything back to the internal storage?
 

SDIO

Well-Known Member
Member
Joined
Feb 13, 2023
Messages
2,454
Trophies
0
Age
28
XP
1,713
Country
Germany
It wrote everything back. You can try to to boot with defuse again to see where it crashes.
Also you can try UDPIH again (look for led not for video output, I suspect the fonts are corrupted)
Post automatically merged:

Hi, I was wondering what's difference between this "Erase MLC" and the plugin "wafel_destroy_mlc.ipx" for Minutes ?
Completely different things, the erase when it would work would tell the eMMC to just forget everything. It doesn't touch the SLC cache or everything.

The wafel_destroy_mlc patches IOSU to detect the MLC as 5gb and format it (with scfm caching). So the next time the Wii u boots without that it will detect the MLC as unformatted because of the size change and will format it again. Even if you erase the eMMC, it's possible that IOSU would still detect a file system on the MLC, if enough of it is in the scfm. So that's a way to force the format in that case.
 
  • Like
Reactions: peilezhang

lolorlofl

Well-Known Member
OP
Member
Joined
May 10, 2008
Messages
192
Trophies
1
Website
Visit site
XP
762
Country
Canada
ancast: no patch file `ios.patch`, stubbing... ancast: reading 0xdfd200 bytes from slc:/sys/title/00050010/1000400a/code/fw.img ancast: ...00000000 -> 01000000 ancast: ...00100000 -> 01100000 ancast: ...00200000 -> 01200000 ancast: ...00300000 -> 01300000 ancast: ...00400000 -> 01400000 ancast: ...00500000 -> 01500000 ancast: ...00600000 -> 01600000 ancast: ...00700000 -> 01700000 ancast: ...00800000 -> 01800000 ancast: ...00900000 -> 01900000 ancast: ...00a00000 -> 01a00000 ancast: ...00b00000 -> 01b00000 ancast: ...00c00000 -> 01c00000 ancast: ...00d00000 -> 01d00000 ancast: done reading ancast: decrypting slc:/sys/title/00050010/1000400a/code/fw.img... ancast: fini ancast: IOS image is prod 5.5.0 ~ 5.5.4 ancast: pre-parsing plugin `sdmc:/wiiu/ios_plugins/wafel_core.ipx` ancast: loading plugin `sdmc:/wiiu/ios_plugins/wafel_core.ipx` GPU clocked at: 544.999877MHz Unmounting SLC... Shutting down MLC... sdhc_bus_power(0x0) Shutting down SD card... sdhc_bus_power(0x0) Shutting down interrupts... Shutting down caches and MMU... Vectoring to 0x01000300... Searching for OTP store in patch... Searching for OTP store in plugins... OTP store at: 27e23204 we in here kern 0x27e00fc0, base 0x27e00000 Inserted 27e00000 before e0000000 and after 20000000! Inserted 27e00000 before e0000000 and after 27e00000! Inserted 27e00000 before e0000000 and after 05200000! Type Offset VirtAddr PhysAddr FileSiz MemSiz Flg Align PHDR 0x000034 0x1d000000 0x1d000000 0x00000960 0x00000960 0x000000 0x4 NOTE 0x000934 0x1d000960 0x1d000960 0x000002ac 0x000002ac 0x000000 0x4 LOAD 0x000034 0x1d000000 0x1d000000 0x00000c0c 0x02b00000 0x000000 0x4000 LOAD 0x000be0 0x04000000 0x08280000 0x00017020 0x00017020 0x300005 0x4 LOAD 0x017c00 0x04020000 0x082a0000 0x00003f70 0x00003f70 0x300004 0x4 LOAD 0x01bb70 0x04024000 0x082a4000 0x00000ed4 0x00000ed4 0x300006 0x40 LOAD 0x01ca44 0x04025000 0x082a5000 0x00000000 0x000095c0 0x300006 0x40 LOAD 0x01ca44 0x05000000 0x081c0000 0x000598f0 0x000598f0 0x100005 0x4 LOAD 0x076334 0x05060000 0x08220000 0x0000ffc4 0x0000ffc4 0x100004 0x40 LOAD 0x0862f8 0x05070000 0x08230000 0x00003420 0x00003420 0x100006 0x40 LOAD 0x089718 0x05074000 0x08234000 0x00000000 0x00048574 0x100006 0x40 LOAD 0x089718 0x05100000 0x13d80000 0x00015d6c 0x00015d6c 0x100005 0x4 LOAD 0x09f484 0x08120000 0x08120000 0x00015000 0x00015000 0x000005 0x10 LOAD 0x0b4484 0x08140000 0x08140000 0x00002478 0x00002478 0x000004 0x10 LOAD 0x0b68fc 0x08143000 0x08143000 0x0000d000 0x0000d000 0x000006 0x10 LOAD 0x0c38fc 0x08150000 0x08150000 0x00000000 0x00061230 0x000006 0x4000 LOAD 0x0c38fc 0x10000000 0x10000000 0x00000000 0x00100000 0x100006 0x1 LOAD 0x0c38fc 0x10100000 0x10100000 0x000312d0 0x000312d0 0x400005 0x4 LOAD 0x0f4bcc 0x10140000 0x10140000 0x00004694 0x00004694 0x400004 0x4 LOAD 0x0f9260 0x10145000 0x10145000 0x000000dc 0x000000dc 0x400006 0x4 LOAD 0x0f933c 0x10146000 0x10146000 0x00000000 0x0037f4e8 0x400006 0x20 LOAD 0x0f933c 0x10700000 0x10700000 0x000f81c4 0x000f81c4 0x500005 0x4 LOAD 0x1f1500 0x10800000 0x10800000 0x00033b6c 0x00033b6c 0x500004 0x20 LOAD 0x22506c 0x10834000 0x10834000 0x000005d0 0x000005d0 0x500006 0x4 LOAD 0x22563c 0x10835000 0x10835000 0x00000000 0x01406554 0x500006 0x200 LOAD 0x22563c 0x11f00000 0x11f00000 0x00085770 0x00085770 0x600005 0x4 LOAD 0x2aadac 0x11fc0000 0x11fc0000 0x000140b0 0x000140b0 0x600004 0x4 LOAD 0x2bee5c 0x11fd5000 0x11fd5000 0x00023234 0x00023234 0x600006 0x4 LOAD 0x2e2090 0x11ff9000 0x11ff9000 0x00000000 0x0015f41c 0x600006 0x1000 LOAD 0x2e2090 0x12300000 0x12300000 0x00131844 0x00131844 0x700005 0x4 LOAD 0x4138d4 0x12440000 0x12440000 0x000288e8 0x000288e8 0x700004 0x4 LOAD 0x43c1bc 0x12469000 0x12469000 0x000000e4 0x000000e4 0x700006 0x4 LOAD 0x43c2a0 0x1246a000 0x1246a000 0x0005b31d 0x0005b31d 0x700006 0x4 LOAD 0x4975c0 0x124c6000 0x124c6000 0x00000000 0x003c7028 0x700006 0x40 LOAD 0x4975c0 0x1fb00000 0x1fb00000 0x00300000 0x00300000 0x700006 0x4 LOAD 0x7975c0 0x1fe00000 0x1fe00000 0x00014ef4 0x00014ef4 0x100006 0x20 LOAD 0x7ac4b4 0x1fe40000 0x1fe40000 0x00000000 0x001c0000 0x100006 0x1 LOAD 0x7ac4b4 0x20000000 0x20000000 0x00000000 0x07e00000 0x500006 0x1 LOAD 0x000000 0x27e00000 0x27e00000 0x00200000 0x00200000 0x100007 0x1 LOAD 0x000000 0x05200000 0x27e00000 0x00000000 0x00100000 0x100007 0x1 LOAD 0x000000 0x10600000 0x27e00000 0x00000000 0x00100000 0x100007 0x1 LOAD 0x7ac4b4 0xe0000000 0x12900000 0x000db65c 0x000db65c 0x800005 0x4 LOAD 0x887b10 0xe0100000 0x12a00000 0x0002088c 0x0002088c 0x800004 0x4 LOAD 0x8a839c 0xe0121000 0x12a21000 0x00000124 0x00000124 0x800006 0x4 LOAD 0x8a84c0 0xe0122000 0x12a22000 0x00000650 0x00000650 0x800006 0x4 LOAD 0x8a8b10 0xe0123000 0x12a23000 0x00000000 0x0013ef10 0x800006 0x40 LOAD 0x8a8b10 0xe1000000 0x12bc0000 0x00090d08 0x00090d08 0x900005 0x4 LOAD 0x939818 0xe10c0000 0x12c80000 0x000213b4 0x000213b4 0x900004 0x4 LOAD 0x95abcc 0xe10e2000 0x12ca2000 0x00001734 0x00001734 0x900006 0x4 LOAD 0x95c300 0xe10e4000 0x12ca4000 0x00000000 0x002043b8 0x900006 0x20 LOAD 0x95c300 0xe2000000 0x12ec0000 0x002651e0 0x002651e0 0xb00005 0x4 LOAD 0xbc14e0 0xe2280000 0x13140000 0x00048934 0x00048934 0xb00004 0x4 LOAD 0xc09e14 0xe22c9000 0x13189000 0x00000264 0x00000264 0xb00006 0x4 LOAD 0xc0a078 0xe22ca000 0x1318a000 0x00000604 0x00000604 0xb00006 0x4 LOAD 0xc0a67c 0xe22cb000 0x1318b000 0x00000000 0x003fd9f0 0xb00006 0x40 LOAD 0xc0a67c 0xe3000000 0x13640000 0x0016ba14 0x0016ba14 0xc00005 0x4 LOAD 0xd76090 0xe3180000 0x137c0000 0x0002c78c 0x0002c78c 0xc00004 0x4 LOAD 0xda281c 0xe31ad000 0x137ed000 0x00000150 0x00000150 0xc00006 0x4 LOAD 0xda296c 0xe31ae000 0x137ee000 0x000009d0 0x000009d0 0xc00006 0x4 LOAD 0xda333c 0xe31af000 0x137ef000 0x00000000 0x0014da94 0xc00006 0x40 LOAD 0xda333c 0xe4000000 0x13a40000 0x00019704 0x00019704 0xd00005 0x4 LOAD 0xdbca40 0xe4040000 0x13a80000 0x00005ae8 0x00005ae8 0xd00004 0x4 LOAD 0xdc2528 0xe4046000 0x13a86000 0x0000005c 0x0000005c 0xd00006 0x4 LOAD 0xdc2584 0xe4047000 0x13a87000 0x00000000 0x0011123c 0xd00006 0x20 LOAD 0xdc2584 0xe5000000 0x13c00000 0x0000fd64 0x0000fd64 0xa00005 0x4 LOAD 0xdd22e8 0xe5040000 0x13c40000 0x0000328c 0x0000328c 0xa00004 0x4 LOAD 0xdd5574 0xe5044000 0x13c44000 0x000006e4 0x000006e4 0xa00006 0x4 LOAD 0xdd5c58 0xe5045000 0x13c45000 0x00000000 0x00029900 0xa00006 0x20 LOAD 0xdd5c58 0xe6000000 0x13cc0000 0x00010a80 0x00010a80 0x200005 0x4 LOAD 0xde66d8 0xe6040000 0x13d00000 0x00001b90 0x00001b90 0x200004 0x4 LOAD 0xde8268 0xe6042000 0x13d02000 0x00004990 0x00004990 0x200006 0x4 LOAD 0xdecbf8 0xe6047000 0x13d07000 0x00000000 0x000011f4 0x200006 0x4 LOAD 0xdecbf8 0xe7000000 0x082c0000 0x00001000 0x00001000 0x200006 0x4 LOAD 0xdedbf8 0xeff00000 0xfff00000 0x00000000 0x00008000 0x100006 0x1 LOAD 0xdedbf8 0xffff0000 0xffff0000 0x0000eb0c 0x0000eb0c 0x000007 0x4 kern_main symbol at: 27e00fc0 our module mem size is: 00177000 wafel_core: found OTP read pattern 1 at 08120290... wafel_core: found OTP read at 08120248. stroopwafel kern_main done region starting at virtual address 0xffff0000: size = 0x00010000 paddr = 0xffff0000 domain = 0x00000000 attributes: Kernel-Only, cached region starting at virtual address 0x08120000: size = 0x000a0000 paddr = 0x08120000 domain = 0x00000000 attributes: Kernel-Only, cached region starting at virtual address 0x1d000000: size = 0x02b00000 paddr = 0x1d000000 domain = 0x00000000 attributes: Read/Write, cached region starting at virtual address 0x08000000: size = 0x00100000 paddr = 0x08000000 domain = 0x0000000f attributes: Read/Write, cached region starting at virtual address 0x08100000: size = 0x00020000 paddr = 0x08100000 domain = 0x00000000 attributes: Read/Write, cached region starting at virtual address 0x00000000: size = 0x00001000 paddr = 0x00000000 domain = 0x00000000 attributes: Kernel-Only, cached region starting at virtual address 0x00001000: size = 0x01fff000 paddr = 0x00001000 domain = 0x00000000 attributes: Read/Write, cached region starting at virtual address 0x14000000: size = 0x09000000 paddr = 0x14000000 domain = 0x00000000 attributes: Read/Write, cached region starting at virtual address 0x27c00000: size = 0x00400000 paddr = 0x27c00000 domain = 0x00000000 attributes: Read/Write, cached region starting at virtual address 0x28000000: size = 0xa8000000 paddr = 0x28000000 domain = 0x00000000 attributes: Read/Write, cached IOS_KERNEL: Built 07/28/15 19:27:01, SRAM Utilization 91%, MEM Utilization 90%. region starting at virtual address 0x05000000: size = 0x0005a000 paddr = 0x081c0000 domain = 0x00000001 attributes: Read-Only, cached region starting at virtual address 0x05060000: size = 0x00010000 paddr = 0x08220000 domain = 0x00000001 attributes: Read-Only, cached region starting at virtual address 0x05070000: size = 0x00004000 paddr = 0x08230000 domain = 0x00000001 attributes: Read/Write, cached region starting at virtual address 0x05074000: size = 0x00049000 paddr = 0x08234000 domain = 0x00000001 attributes: Read/Write, cached region starting at virtual address 0x04000000: size = 0x00018000 paddr = 0x08280000 domain = 0x00000003 attributes: Read-Only, cached region starting at virtual address 0x04020000: size = 0x00004000 paddr = 0x082a0000 domain = 0x00000003 attributes: Read-Only, cached region starting at virtual address 0x04024000: size = 0x00001000 paddr = 0x082a4000 domain = 0x00000003 attributes: Read/Write, cached region starting at virtual address 0x04025000: size = 0x0000a000 paddr = 0x082a5000 domain = 0x00000003 attributes: Read/Write, cached region starting at virtual address 0xe7000000: size = 0x00001000 paddr = 0x082c0000 domain = 0x00000002 attributes: Read/Write, cached region starting at virtual address 0x10000000: size = 0x00100000 paddr = 0x10000000 domain = 0x00000001 attributes: Read/Write, cached region starting at virtual address 0x10100000: size = 0x00032000 paddr = 0x10100000 domain = 0x00000004 attributes: Read-Only, cached region starting at virtual address 0x10140000: size = 0x00005000 paddr = 0x10140000 domain = 0x00000004 attributes: Read-Only, cached region starting at virtual address 0x10145000: size = 0x00001000 paddr = 0x10145000 domain = 0x00000004 attributes: Read/Write, cached region starting at virtual address 0x10146000: size = 0x00380000 paddr = 0x10146000 domain = 0x00000004 attributes: Read/Write, cached region starting at virtual address 0x10700000: size = 0x000f9000 paddr = 0x10700000 domain = 0x00000005 attributes: Read-Only, cached region starting at virtual address 0x10800000: size = 0x00034000 paddr = 0x10800000 domain = 0x00000005 attributes: Read-Only, cached region starting at virtual address 0x10834000: size = 0x00001000 paddr = 0x10834000 domain = 0x00000005 attributes: Read/Write, cached region starting at virtual address 0x10835000: size = 0x01407000 paddr = 0x10835000 domain = 0x00000005 attributes: Read/Write, cached region starting at virtual address 0x11f00000: size = 0x00086000 paddr = 0x11f00000 domain = 0x00000006 attributes: Read-Only, cached region starting at virtual address 0xd1f00000: size = 0x00086000 paddr = 0x11f00000 domain = 0x00000006 attributes: Read-Only, un-cached region starting at virtual address 0x11fc0000: size = 0x00015000 paddr = 0x11fc0000 domain = 0x00000006 attributes: Read-Only, cached region starting at virtual address 0xd1fc0000: size = 0x00015000 paddr = 0x11fc0000 domain = 0x00000006 attributes: Read-Only, un-cached region starting at virtual address 0x11fd5000: size = 0x00024000 paddr = 0x11fd5000 domain = 0x00000006 attributes: Read/Write, cached region starting at virtual address 0xd1fd5000: size = 0x00024000 paddr = 0x11fd5000 domain = 0x00000006 attributes: Read/Write, un-cached region starting at virtual address 0x11ff9000: size = 0x00160000 paddr = 0x11ff9000 domain = 0x00000006 attributes: Read/Write, cached region starting at virtual address 0xd1ff9000: size = 0x00160000 paddr = 0x11ff9000 domain = 0x00000006 attributes: Read/Write, un-cached region starting at virtual address 0x12300000: size = 0x00132000 paddr = 0x12300000 domain = 0x00000007 attributes: Read-Only, cached region starting at virtual address 0x12440000: size = 0x00029000 paddr = 0x12440000 domain = 0x00000007 attributes: Read-Only, cached region starting at virtual address 0x12469000: size = 0x00001000 paddr = 0x12469000 domain = 0x00000007 attributes: Read/Write, cached region starting at virtual address 0x1246a000: size = 0x0005c000 paddr = 0x1246a000 domain = 0x00000007 attributes: Read/Write, cached region starting at virtual address 0x124c6000: size = 0x003c8000 paddr = 0x124c6000 domain = 0x00000007 attributes: Read/Write, cached region starting at virtual address 0xe0000000: size = 0x000dc000 paddr = 0x12900000 domain = 0x00000008 attributes: Read-Only, cached region starting at virtual address 0xe0100000: size = 0x00021000 paddr = 0x12a00000 domain = 0x00000008 attributes: Read-Only, cached region starting at virtual address 0xe0121000: size = 0x00001000 paddr = 0x12a21000 domain = 0x00000008 attributes: Read/Write, cached region starting at virtual address 0xe0122000: size = 0x00001000 paddr = 0x12a22000 domain = 0x00000008 attributes: Read/Write, cached region starting at virtual address 0xe0123000: size = 0x0013f000 paddr = 0x12a23000 domain = 0x00000008 attributes: Read/Write, cached region starting at virtual address 0xe1000000: size = 0x00091000 paddr = 0x12bc0000 domain = 0x00000009 attributes: Read-Only, cached region starting at virtual address 0xe10c0000: size = 0x00022000 paddr = 0x12c80000 domain = 0x00000009 attributes: Read-Only, cached region starting at virtual address 0xe10e2000: size = 0x00002000 paddr = 0x12ca2000 domain = 0x00000009 attributes: Read/Write, cached region starting at virtual address 0xe10e4000: size = 0x00205000 paddr = 0x12ca4000 domain = 0x00000009 attributes: Read/Write, cached region starting at virtual address 0xe2000000: size = 0x00266000 paddr = 0x12ec0000 domain = 0x0000000b attributes: Read-Only, cached region starting at virtual address 0xe2280000: size = 0x00049000 paddr = 0x13140000 domain = 0x0000000b attributes: Read-Only, cached region starting at virtual address 0xe22c9000: size = 0x00001000 paddr = 0x13189000 domain = 0x0000000b attributes: Read/Write, cached region starting at virtual address 0xe22ca000: size = 0x00001000 paddr = 0x1318a000 domain = 0x0000000b attributes: Read/Write, cached region starting at virtual address 0xe22cb000: size = 0x003fe000 paddr = 0x1318b000 domain = 0x0000000b attributes: Read/Write, cached region starting at virtual address 0xe3000000: size = 0x0016c000 paddr = 0x13640000 domain = 0x0000000c attributes: Read-Only, cached region starting at virtual address 0xe3180000: size = 0x0002d000 paddr = 0x137c0000 domain = 0x0000000c attributes: Read-Only, cached region starting at virtual address 0xe31ad000: size = 0x00001000 paddr = 0x137ed000 domain = 0x0000000c attributes: Read/Write, cached region starting at virtual address 0xe31ae000: size = 0x00001000 paddr = 0x137ee000 domain = 0x0000000c attributes: Read/Write, cached region starting at virtual address 0xe31af000: size = 0x0014e000 paddr = 0x137ef000 domain = 0x0000000c attributes: Read/Write, cached region starting at virtual address 0xe4000000: size = 0x0001a000 paddr = 0x13a40000 domain = 0x0000000d attributes: Read-Only, cached region starting at virtual address 0xe4040000: size = 0x00006000 paddr = 0x13a80000 domain = 0x0000000d attributes: Read-Only, cached region starting at virtual address 0xe4046000: size = 0x00001000 paddr = 0x13a86000 domain = 0x0000000d attributes: Read/Write, cached region starting at virtual address 0xe4047000: size = 0x00112000 paddr = 0x13a87000 domain = 0x0000000d attributes: Read/Write, cached region starting at virtual address 0xe5000000: size = 0x00010000 paddr = 0x13c00000 domain = 0x0000000a attributes: Read-Only, cached region starting at virtual address 0xe5040000: size = 0x00004000 paddr = 0x13c40000 domain = 0x0000000a attributes: Read-Only, cached region starting at virtual address 0xe5044000: size = 0x00001000 paddr = 0x13c44000 domain = 0x0000000a attributes: Read/Write, cached region starting at virtual address 0xe5045000: size = 0x0002a000 paddr = 0x13c45000 domain = 0x0000000a attributes: Read/Write, cached region starting at virtual address 0xe6000000: size = 0x00011000 paddr = 0x13cc0000 domain = 0x00000002 attributes: Read-Only, cached region starting at virtual address 0xe6040000: size = 0x00002000 paddr = 0x13d00000 domain = 0x00000002 attributes: Read-Only, cached region starting at virtual address 0xe6042000: size = 0x00005000 paddr = 0x13d02000 domain = 0x00000002 attributes: Read/Write, cached region starting at virtual address 0xe6047000: size = 0x00002000 paddr = 0x13d07000 domain = 0x00000002 attributes: Read/Write, cached region starting at virtual address 0x05100000: size = 0x00016000 paddr = 0x13d80000 domain = 0x00000001 attributes: Read-Only, cached region starting at virtual address 0x1fb00000: size = 0x00300000 paddr = 0x1fb00000 domain = 0x00000007 attributes: Read/Write, cached region starting at virtual address 0x1fe00000: size = 0x00015000 paddr = 0x1fe00000 domain = 0x00000001 attributes: Read/Write, cached region starting at virtual address 0x1fe40000: size = 0x001c0000 paddr = 0x1fe40000 domain = 0x00000001 attributes: Read/Write, cached region starting at virtual address 0x20000000: size = 0x07e00000 paddr = 0x20000000 domain = 0x00000005 attributes: Read/Write, cached region starting at virtual address 0x05200000: size = 0x00100000 paddr = 0x27e00000 domain = 0x00000001 attributes: Read/Write, cached region starting at virtual address 0x10600000: size = 0x00100000 paddr = 0x27e00000 domain = 0x00000001 attributes: Read/Write, cached region starting at virtual address 0xeff00000: size = 0x00008000 paddr = 0xfff00000 domain = 0x00000001 attributes: Read/Write, cached Creating main() thread for IOS-BSP: priority=125 stackSize=4096 stackPtr=0xe7000000 entry=0xe600f848memPermMask=0x00100000 IOS-BSP: Built 07/28/15 19:23:58, Image Utilization 37%. Creating main() thread for IOS-MCP: priority=124 stackSize=8192 stackPtr=0x050ba4a0 entry=0x05056718memPermMask=0x000c0030 Creating main() thread for IOS-CRYPTO: priority=123 stackSize=4096 stackPtr=0x04028628 entry=0x04015ea4memPermMask=0x000c0030 Creating main() thread for IOS-USB: priority=107 stackSize=16384 stackPtr=0x104b92c8 entry=0x1012e9e8memPermMask=0x00038600 Creating main() thread for IOS-FS: priority=85 stackSize=16384 stackPtr=0x1114117c entry=0x107f6830memPermMask=0x001c5870 Creating main() thread for IOS-PAD: priority=117 stackSize=8192 stackPtr=0x1214ab4c entry=0x11f82d94memPermMask=0x00008180 Creating main() thread for IOS-NET: priority=80 stackSize=16384 stackPtr=0x12804498 entry=0x123e4174memPermMask=0x00002000 Creating main() thread for IOS-ACP: priority=50 stackSize=16384 stackPtr=0xe0125390 entry=0xe00d8290memPermMask=0x00000000 Creating main() thread for IOS-NSEC: priority=50 stackSize=4096 stackPtr=0xe12e71a4 entry=0xe108e860memPermMask=0x00000000 Creating main() thread for IOS-AUXIL: priority=70 stackSize=16384 stackPtr=0xe506a900 entry=0xe500d720memPermMask=0x00000000 Creating main() thread for IOS-NIM-BOSS: priority=50 stackSize=16384 stackPtr=0xe22cb000 entry=0xe22602fcmemPermMask=0x00000000 Creating main() thread for IOS-FPD: priority=50 stackSize=16384 stackPtr=0xe31af000 entry=0xe3166b34memPermMask=0x00000000 Creating main() thread for IOS-TEST: priority=75 stackSize=8192 stackPtr=0xe415623c entry=0xe40168a4memPermMask=0x00000000 we in here MCP 0x5202008 stroopwafel mcp_main done IOS-PAD: Built 07/28/15 19:23:58, Image Utilization 58%. IOS-CRYPTO: Built 07/28/15 19:23:58, Image Utilization 72%. CRYPTO Open, clientPid=1 nodeId 00000000 titleId 0000000000000000 perm=0xffffffff IOSC Initialize -- IOSC library build time 09/27/12 19:28:40 IOS-USB: Built 07/28/15 19:23:58, Image Utilization 62%. 00:00:00:235: MMC(0): initializing Controller 0, Slot 0 base 0x0D070000 00:00:00:237: MMC(3): initializing Controller 2, Slot 0 base 0x0D100000 00:00:00:239: MMC(4): initializing Controller 3, Slot 0 base 0x0D110000 IOS-NET: Built 07/28/15 19:23:58, Image Utilization 92%. USB Trace: Activating root hubs @ uptime 0.302 s with options 0x40000. 00:00:00:303: USB Trace: Activating root hubs @ uptime 0.302 s with options 0x40000. UHS0 Trace: DevFsm(EHCI-0/L0/P0): Creating device, speed=HIGH. 00:00:00:317: UHS0 Trace: DevFsm(EHCI-0/L0/P0): Creating device, speed=HIGH. UHS0 Trace: DevFsm(OHCI-0:0/L0/P0): Creating device, speed=FULL. 00:00:00:322: UHS0 Trace: DevFsm(OHCI-0:0/L0/P0): Creating device, speed=FULL. USB Info: UhsServerAddHc 0 OK. 00:00:00:325: USB Info: UhsServerAddHc 0 OK. UHS0 Trace: DevFsm(EHCI-1/L0/P0): Creating device, speed=HIGH. 00:00:00:337: UHS0 Trace: DevFsm(EHCI-1/L0/P0): Creating device, speed=HIGH. UHS0 Trace: DevFsm(OHCI-1:0/L0/P0): Creating device, speed=FULL. 00:00:00:342: UHS0 Trace: DevFsm(OHCI-1:0/L0/P0): Creating device, speed=FULL. USB Info: UhsServerAddHc 1 OK. 00:00:00:345: USB Info: UhsServerAddHc 1 OK. IOS-TEST: Built 07/28/15 19:23:58, Image Utilization 76%. TEST Info: localProcessHeap OK. TEST Info: crossProcessHeap OK. 00:00:00:353: TEST Info: crossProcessHeap OK. IOS-AUXIL: Built 07/28/15 19:23:58, Image Utilization 57%. AUXIL Info: localProcessHeap OK. AUXIL Info: crossProcessHeap OK. 00:00:00:358: AUXIL Info: crossProcessHeap OK. UHS0 Trace: Powering on root hub group 0. 00:00:00:362: UHS0 Trace: Powering on root hub group 0. IOS-NSEC: Built 07/28/15 19:23:58, Image UtilIOS-FPD: Built 07/28/15 19:23:58, Image Utilization 74%. UHS0 Trace: Powering on root hub group 1. 00:00:00:378: UHS0 Trace: Powering on root hub group 1. 00:00:00:381: AHCI_MGR Trace: Turning on drive power. 00:00:00:382: AHCI_MGR Trace: Turning on drive power. ization 96%. 00:00:00:388: AHCI_MGR Trace: Initializing phy. 00:00:00:389: AHCI_MGR Trace: Initializing phy. 00:00:00:390: AHCI_DRV Trace: Initiating cold open. 00:00:00:392: AHCI_DRV Trace: Initiating cold open. 00:00:00:393: AHCI_DRV Trace: Resetting HBA. 00:00:00:395: AHCI_DRV Trace: Resetting HBA. AUXIL Info: Net OK. 00:00:00:397: AUXIL Info: Net OK. IOS-ACP: Built 07/28/15 19:23:58, Image Utilization 86%. IOS-NIM-BOSS: Built 07/28/15 19:23:58, Image Utilization 90%. act_main.cpp,Start,174CRYPTO Open, clientPid=5 nodeId 00000000 titleId 00000000100000f1 perm=0xffffffff 00:00:00:446: AHCI_DRV Trace: HBA Reset OK. 00:00:00:447: AHCI_DRV Trace: HBA Reset OK. 00:00:00:515: ISFS: FAT INFO (ch WUP): slot 31 / seq 449057 (Each FAT slot has been updated 7016 times in avr) 00:00:00:518: ISFS: fs_fat.c(545)FAT INFO (ch WUP): slot 31 / seq 449057 (Each FAT slot has been updated 7016 times in avr) 00:00:00:521: FSA: [uptime 0.521 s]: Attached volume to slc01 (isfs): Capacity 511 MB, 262016 logical blocks of size 2048 B. 00:00:00:611: ISFS: FAT INFO (ch RVL Compat): slot 0 / seq 100226 (Each FAT slot has been updated 6264 times in avr) 00:00:00:614: ISFS: fs_fat.c(545)FAT INFO (ch RVL Compat): slot 0 / seq 100226 (Each FAT slot has been updated 6264 times in avr) 00:00:00:617: FSA: [uptime 0.617 s]: Attached volume to slccmpt01 (isfs): Capacity 511 MB, 261632 logical blocks of size 2048 B. 00:00:00:626: SCFM:Start init. BUILD_TIME:[19:23:46] 00:00:00:631: SCFM:FSAInit 00:00:00:632: SCFM:AddClient 00:00:00:633: SCFM:scfmMountSlc 00:00:00:634: SCFM:scfmLoad 00:00:00:635: SCFM:Done init. 00:00:00:636: PCFS: Disabled because we are in PROD mode. 00:00:00:638: MCP: booting from NAND 00:00:00:639: MCP: Boot PM flags - PON_COLDBOOT 00:00:00:659: MCP: Cafe OS SDK Version 2.13.01 Build 68939 Branch sdk_2_13 00:00:00:661: MCP: Booting on Espresso (0x0000700100000201), Latte (0x25100028), RTC (0x21) 00:00:00:663: MCP: Platform - boardType(CF), boardRevision(11), devicePresence(0x00000000), sataDevice(3), consoleType(1) 00:00:00:668: ISFS: FAT block entries check start 00:00:00:670: ISFS: fs_ops.c(2215)FAT block entries check start 00:00:00:675: ISFS: FAT block entries check finished. 00:00:00:677: ISFS: fs_ops.c(2292)FAT block entries check finished. 00:00:00:694: FSA: [uptime 0.694 s]: Attached volume to mlc01 (wfs): Capacity 29760 MB, 60948480 logical blocks of size 512 B. 00:00:00:703: FSA: [uptime 0.703 s]: Attached volume to sdcard01 (fat): Capacity 1962 MB, 4019200 logical blocks of size 512 B. 00:00:00:708: FSA: [uptime 0.708 s]: Attached volume to ramdisk01 (raw): Capacity 125 MB, 129022 logical blocks of size 1024 B. 00:00:00:712: MCP: Formatting Device ramdisk to wfs 00:00:00:857: FSA: [uptime 0.857 s]: Attached volume to ramdisk01 (wfs): Capacity 125 MB, 129022 logical blocks of size 1024 B. 00:00:00:860: MCP: Format Complete 00:00:00:979: ISFS: FAT block entries check start 00:00:00:981: ISFS: fs_ops.c(2215)FAT block entries check start 00:00:00:986: ISFS: FAT block entries check finished. 00:00:00:987: ISFS: fs_ops.c(2292)FAT block entries check finished. 00:00:01:093: [ES] checkOwnedTitleUpdateFlags: no delete in progress 00:00:01:096: [ES] checkOwnedTitleUpdateFlags: no import in progress 00:00:01:108: MCP: File loading from ramdisk cache is enabled 00:00:01:110: MCP: Master title 0005001010040100 os 000500101000400a from mlc01 flags 0004 2012-01-01 00:00:30 Cafe OS SDK Version 2.13.01 Build 68939 Branch sdk_2_13 Espresso: 0x0000700100000201 Latte: 0x0000409f System mode: 0x100000 Boot flags: 0x10000 Security Level: 0x1e Key Type: 0xfffffffc Prod Version: 0x5 Serial: 402595241 Model: WUP-101(02) Prod Area: 0x2 Game Area: 0x2 5GHz Code: 0x7 00:00:01:133: MCP: no valid title list found, rebuilding... 00:00:01:140: MCP: os version 10 NDEBUG (0x000500101000400a) 00:00:01:142: MCP: FSA volume on device /dev/mlc01 (wfs) attached @ uptime 1.142 s. 00:00:01:157: MCP: found master title 5001010040100 on mlc01 at 1.157 s 00:00:01:162: MCP: FSA volume on device /dev/ramdisk01 (wfs) attached @ uptime 1.162 s. 00:00:01:164: MCP: Titles scanned (dev_state 0006) on device /dev/ramdisk01 (wfs) @ uptime 1.164 s. 00:00:01:167: MCP: FSA volume on device /dev/sdcard01 (fat) attached @ uptime 1.167 s. 00:00:01:170: MCP: Titles scanned (dev_state 0006) on device /dev/sdcard01 (fat) @ uptime 1.170 s. 00:00:01:172: MCP: FSA volume on device /dev/slc01 (isfs) attached @ uptime 1.172 s. 00:00:01:175: MCP: FSA volume on device /dev/slccmpt01 (isfs) attached @ uptime 1.175 s. 00:00:01:177: MCP: Titles scanned (dev_state 0006) on device /dev/slccmpt01 (isfs) @ uptime 1.177 s. 00:00:01:352: FSA: ### DATA CORRUPTION ERROR ###, dev:mlc01, err:-1245211, cmd:25, path:/sys/title/00050010/1004e100/code/app.xml 00:00:01:418: ISFS: fs_ops.c(3733)Can not change the owner Id of a non-empty file 00:00:01:420: ISFS: fs_ops.c(3733) Can not change the owner Id of a non-empty file 00:00:01:422: ISFS: fs_ops.c(6719)Could not set attribute, rc=-524312 00:00:01:424: ISFS: fs_ops.c(6719) Could not set attribute, rc=-524312 00:00:01:444: MCP: Titles scanned (dev_state 000e) on device /dev/slc01 (isfs) @ uptime 1.444 s. 00:00:01:475: FSA: ### DATA CORRUPTION ERROR ###, dev:mlc01, err:-1245211, cmd:25, path:/sys/title/0005001b/10052000/code/app.xml 00:00:01:482: FSA: ### DATA CORRUPTION ERROR ###, dev:mlc01, err:-1245211, cmd:25, path:/sys/title/0005001b/10053000/code/app.xml 00:00:01:758: FSA: ### DATA CORRUPTION ERROR ###, dev:mlc01, err:-1245211, cmd:11, path:(null) 00:00:01:784: FSA: ### DATA CORRUPTION ERROR ###, dev:mlc01, err:-1245211, cmd:11, path:(null) 00:00:01:802: MCP: ECO mode is disabled 00:00:01:803: [+-* DK is ready for console input *-+] 00:00:01:804: MCP: syslog mask is set to 0xffffffff 00:00:01:812: W2C: Does not need W2C-reflection 00:00:01:884: FSA: ### DATA CORRUPTION ERROR ###, dev:mlc01, err:-1245211, cmd:25, path:/sys/title/00050030/1001a10a/code/app.xml 00:00:01:901: MCP: Titles scanned (dev_state 0004) on device /dev/mlc01 (wfs) @ uptime 1.901 s. 00:00:01:906: MCP: Titles scanned (dev_state 000c) on device /dev/mlc01 (wfs) @ uptime 1.906 s. 00:00:01:910: MCP: Titles scanned (dev_state 0006) on device /dev/mlc01 (wfs) @ uptime 1.910 s. $IOSVersion: OHCI1: 07/28/15 19:23:17 $ UHS1 Trace: DevFsm(EHCI-2/L0/P0): Creating device, speed=HIGH. 00:00:02:364: UHS1 Trace: DevFsm(EHCI-2/L0/P0): Creating device, speed=HIGH. UHS1 Trace: DevFsm(OHCI-2:0/L0/P0): Creating device, speed=FULL. 00:00:02:370: UHS1 Trace: DevFsm(OHCI-2:0/L0/P0): Creating device, speed=FULL. 00:00:02:372: CCR_MAIN: activating root hub. CRYPTO Open, clientPid=1 nodeId 00000000 titleId 0000000000000000 perm=0xffffffff 00:00:02:426: FS_MAIN: UMS Server Created. AUXIL Info: resumed. 00:00:02:430: AUXIL Info: resumed. [ACP]INFO:mxmlAcpPortInitialize:81: Create local heap 35 for mxml. Dongle Host Driver, version 5.91.153.64 IOPOS board:11 asic:21/cafe0050 clk:248625000/1942382 Host Controller version 1.0, Vendor Revision: 0x00 sdstd_start_clock:now, divided clk is: 24000000 Hz sdstd_cmd_issue: Command Inhibit timeout with SDIO_CMD_5 sdstd_cmd_issue: CMD_COMPLETE timeout: intrStatus: 0x40 error stat 0x0 state 0x1ff0001 get_ocr: CMD5 failed sdstd_start_power: Failed to get OCR bailing sdstd_start_power failed Host Controller version 1.0, Vendor Revision: 0x00 sdstd_start_clock:now, divided clk is: 24000000 Hz sdstd_cmd_issue: Command Inhibit timeout with SDIO_CMD_5 sdstd_cmd_issue: CMD_COMPLETE timeout: intrStatus: 0x0 error stat 0x0 state 0x1ff0001 get_ocr: CMD5 failed sdstd_start_power: Failed to get OCR bailing sdstd_start_power failed sdioh_attach:driver_init() failed() bcmsdh_probe failed Exiting owing to error 00:00:02:513: NET: Applied interface MTU (wl0:1400 eth0:1400). [NET] Init: Nintendo Wii U USBETH Trace: Created interface 100. 00:00:02:525: USBETH Trace: Created interface 100. IP address of wl0 : 0.0.0.0 00;00;02;349: COSREPORT: Set level:1 from syslog level 00;00;02;349: ----------------------------------------------- BPERF: (0/2350279) PPC Init. 00;00;02;349: Cafe OS SDK Version 2.13.01 Build 68939 Branch sdk_2_13 00;00;02;349: PPC NDEBUG Kernel Build date - Jul 28 2015 19:55:58 00;00;02;349: BUILT AS OS_VERSION_MAJOR 000500101000800A MINOR 0x3D56 00;00;02;349: core=1 COLD BOOT 00;00;02;349: SOFT INTERRUPT MODE 00;00;02;349: ----------------------------------------------- 00;00;02;352: KiCblRegisterBlocks() completed with status 0:-4. fffff7f7f7e3fff6fffd7fff7ffffffff7affbfbfffffffafffffeffe4\7f?7ffc16ffebbfe3fefffefffbefff7fvf7b7e3fffffb7ffffeffeb7febOefebffef~ff_ebe6wedffffffffffffffffbffef5effdfff7fffff7e7befd>9bbfffedfff0bc=f3{befffe}ffffbefffeffffff7fbffffdfffff9beZ8f~bffdfbff9fffe8feff7ffffefffffffdf7ef7ffd7fff?ffffffaff7feeN;fbd7ef7f]8fff_d7bff7fffffffeffddffddf7ffaffffffff7efffdf9ffbdedbfbbf_bffb?bfbffbfee9ffffffffefffl7fffffffffffffb7fde9cdff7fffffbfbfdff~f9ffffff9ffffffffbfefbevffffffd7fffff6ffd9fbcf<00;00;02;349: ----------------------------------------------- 00;00;02;352: PROD Mode - don't even try to load kdebug.elf 00;00;02;353: title id: 5001010040100, app type 90000001 00;00;02;353: 00;00;02;353: --------------------------------------- 00;00;02;353: OS VERSION ID 0x000500101000400A 00;00;02;353: MASTER TITLE ON ffffefffff93e38fff7ffedfffffdfffff3ffdefffbfffffe7ffffffede9bffffefff7fz;e7ffffafbefffbffffff7ffbffeffbfffdfffdff9dff}edbfb5ffff_dffffffbKffde7fffdfefffff7fffffffefffdeabdecfgffbfbbd4bdffffbfffwdcyybebf7ff7ff7ff7ffbefcef9fefeffddffffbfffbffffde9efffffffbefbfd3e3ffffd6effffffffffaf79f7ffffffffffffffffff3becbW}ffeffbbfffb792fffdffefbfffffffefff7fbfffffffffef}ffffbfaf7fdffbfebfd7fdkf7+9ffffd5bfffffbfcffbfefffeffefffffffffffeffddff3ff/wffbeefffdfefff9d7fffedfffbfafdbeffffffbebfffeffbffffbeffafffffffff9fffbdd9fffdfdofffffdffacff}fbffdfffdffff3efcfeedfffe500;00;02;353: OS VERSION ID 0x000500101000400A FLASH 00;00;02;353: --------------------------------------- 00;00;02;353: OHCI1 NOT READY: waiting for OhciPath=/dev/usb/oh1/57e/305 CRYPTO Open, clientPid=9 nodeId 00000000 titleId 00000000100000f4 perm=0xffffffff OHCI1 NOT READY: waiting for OhciPath=/dev/usb/oh1/57e/305 OHCI1: USB device at port 0, vid: 0x057e pid: 0x0305 CRYPTO Open, clientPid=12 nodeId 00000000 titleId 00000000100000f7 perm=0xffffffff 00:00:02:679: MCP: boot1 version 2.11.09 BOOT1: 0x20b9 00:00:02:686: BT: BTA/BTE/STACK now operational 00:00:02:702: MCP: loaded and parsed 'preload.txt' at '/vol/system/title/00050010/1000400a/code' 00;00;02;575: DIAG:+KiRPLLoaderSetup 00:00:02:719: ACT: Current account is #1. 00;00;02;575: DIAG:-KiRPLLoaderSetup: before no-return call to KiLoadContext (0xEFE09400) (0x01003FFC) 00:00:03:452: WUD_BCMFWCheck ==> chipname 20702A1 build 517 from SERIAL FLASH BT: 0x205 00:00:03:456: BT: BTRM now Active (WUD Operational) 00;00;03;519: DIAG:+KiProcess_FinishInitAndPreload urn call to KiLoadContext (0xEFE09400) (0x01003FFC) 00;00;03;519: KiCblRegisterBlocks() completed with status 0:-4. 00;00;03;536: Kernel is loading shared data... ith status 0:-4. 00:00:04:177: User Block Hash Error (Large): 6903808 00:00:04:189: FSA: ### DATA CORRUPTION ERROR ###, dev:mlc01, err:-1245211, cmd:11, path:(null) 00:00:04:192: failed to read file /vol/storage_mlc01/sys/title/0005001b/10042400/content/CafeCn.ttf, err -196635 00;00;04;080: ***LoadShared - WaitLoadComplete(0,8388608) failed with error -196635 on file "CafeCn.ttf". opening /dev/net/ifmgr/ncl... 00:00:05:241: MCP: Heartbeat Enabled 00;00;05;120: DIAG:-KiProcess_FinishInitAndPreload: before no-return call to KiInitKernelFinish eCn.ttf". 00;00;05;120: DIAG:+KiInitKernelFinish tAndPreload urn call to KiLoadContext (0xEFE09400) (0x01003FFC) 00;00;05;121: VVVVVVV----- PPC Kernel Waiting -----VVVVVVV 00;00;05;122: ^^^^^^^----- PPC Kernel Release -----^^^^^^^ 00;00;05;122: DIAG:-KiInitKernelFinish: before no-return call to KiProcess_Launch 00;00;05;122: -------------------- ----------------- 00;00;05;122: PROCESS 1 STARTING 00;00;05;122: SYSLOG_LEVEL 1: 0040100, app type 90000001 Warnings EnabledOD Mode - don't even try to load kdebug.elf 0;00;02;352: KiCblRegisterBlocks() completed with status 0:-4. 00;00;05;122: UserMode Core & Thread Initialization (3 Cores) 00;00;05;122: Core 1 Complete, Default Thread 0x100457E0 00;00;05;123: Core 0 Complete, MSR 0x00005072, Default Thread 0x10045140 00;00;05;125: Core 2 Complete, MSR 0x00005072, Default Thread 0x10045E80 00;00;05;125: Clearing Process MEM2 Arena... 0101000800A MINOR 0x3D56 00;00;05;138: MEM2 Arena clear complete, size 23 MB, 13ms 00;00;05;164: UserMode OS library build date: Jul 28 2015 19:57:03 00;00;05;164: __AppFlags: 0x00000200 00;00;05;165: OSBlockThreadsOnExit default for sdk version 21301 2_13 00;00;05;267: OSSetting_SynchronousPrinting DISABLED 457E0 00;00;05;282: OSSetting_CrashDumpType 0, t for sdk version 21301 2_13 MINI dump after crash gs: 0x00000200 00;00;05;285: TCL(1): init DONE y build date: Jul 28 2015 19:57:03 00:00:05:522: AHCI_DRV Warning: link not ready ready with status 16:-531. 00:00:05:524: AHCI_DRV Warning: link not ready ready with status 16:-531. 00:00:05:526: AHCI_DRV Trace: Resetting HBA. 00:00:05:528: AHCI_DRV Trace: Resetting HBA. 00;00;05;413: __AVMCDCInit,CCRCDCSysGetInfo failed returned -1179519 00:00:05:579: AHCI_DRV Trace: HBA Reset OK. 00:00:05:580: AHCI_DRV Trace: HBA Reset OK. 00;00;05;467: Called CCRCDCSysSetAVMode(16) returned: -1179519 00;00;05;467: Called CCRCDCSysSetAVMode(255) returned: -1179519 2_13 00;00;05;467: Called CCRCDCSysSetVideoEncodingRate(16216) returned: -1179519 00;00;05;519: VPADInit() depricated, no need to call 216) returned: -1179519 00;00;05;520: VPAD Init end, BPERF: (0/5641028) Title PID=1 519 2_13 00;00;06;163: ROOT: Read restart value 0 41028) Title PID=1 519 2_13 00;00;06;163: ROOT: Read audio relaunch value 0 call 216) returned: -1179519 00;00;06;164: ROOT: OSID 0x000500101000400A returned: -1179519 00;00;06;313: Info: Calculating cold boot font CRCs on core:0 d 0x10045140 00;00;06;313: *** KeGetSharedArea() - area not loaded. rned -1179519 00;00;06;313: Error: Root could not get shared font data for font 0 00;00;06;313: WPAD: Master Init 0101000400A returned: -1179519 00;00;06;313: VPADInit() depricated, no need to call 216) returned: -1179519 [ACP]INFO:ClearApplicationBoxCacheForBoss:6353: ClearApplicationBoxCacheForBoss failed due to result.GetValue() = -1607403008 COSREPORT: Using syslog level:1 value 0 41028) Title PID=1 519 2_13 COSREPORT: Set upid_mask:ffffffffffffffff module_mask:ffffffffffffffff level:1 00;00;06;603: Called CCRCDCSysSetAVMode(0) returned: -1179519 ffffffff level:1 00;00;06;603: Called CCRCDCSysSetAVMode(0) returned: -1179519 9 2_13 00;00;06;622: TV mode before transition = 0 eturned: -1179519 9 2_13 00;00;06;622: DRC mode before transition = 1 turned: -1179519 ffffffff level:1 00;00;06;622: ROOT: Got audio buffer from foreground bucket @ e2c00000 len = 9437184 00;00;06;680: Querying BSP for Hardware Information... t @ e2c00000 len = 9437184 00;00;06;680: It is not Holly/Bolly-Wood 1 turned: -1179519 ffffffff level:1 00;00;06;680: It is Latte A2x or later = 0 eturned: -1179519 9 2_13 00;00;06;680: using DSP memory parameters: returned: -1179519 00;00;06;680: DROM_BASE: 0x3000 Initialization (3 Cores) 00;00;06;680: IRAM_SIZE: 0x2000 completed with status 0:-4. 00;00;06;680: DRAM_SIZE: 0x3000 try to load kdebug.elf 00:00:07:377: drh_hw_reset: HW reset DRH, DRH not attached to USB bus resetting DRH alive opening /dev/net/ifmgr/ncl... 00:00:10:589: AHCI_DRV Warning: link not ready ready with status 16:-531. 00:00:10:591: AHCI_DRV Warning: link not ready ready with status 16:-531. 00:00:10:593: AHCI_DRV Trace: Resetting HBA. 00:00:10:594: AHCI_DRV Trace: Resetting HBA. 00:00:10:646: AHCI_DRV Trace: HBA Reset OK. 00:00:10:647: AHCI_DRV Trace: HBA Reset OK. 00:00:14:439: drh_hw_reset: HW reset DRH, DRH not attached to USB bus opening /dev/net/ifmgr/ncl... CRYPTO Open, clientPid=11 nodeId 00000000 titleId 00000000100000f3 perm=0xffffffff 00:00:15:174: [BOSS] BG stress mode is disabled. 00:00:15:660: AHCI_DRV Warning: link not ready ready with status 16:-531. 00:00:15:662: AHCI_DRV Warning: link not ready ready with status 16:-531. 00:00:15:664: AHCI_DRV Trace: Resetting HBA. 00:00:15:666: AHCI_DRV Trace: Resetting HBA. 00:00:15:717: AHCI_DRV Trace: HBA Reset OK. 00:00:15:718: AHCI_DRV Trace: HBA Reset OK. resetting DRH alive opening /dev/net/ifmgr/ncl... 00:00:20:726: AHCI_DRV Warning: link not ready ready with status 16:-531. 00:00:20:728: AHCI_DRV Warning: link not ready ready with status 16:-531. 00:00:20:730: AHCI_DRV Error: file ahci_drv_api.c, function ahciDrvOpen, line 265, status 16:-531, info 4(0x00000004) 00:00:20:733: AHCI_DRV Error: file ahci_drv_api.c, function ahciDrvOpen, line 265, status 16:-531, info 4(0x00000004) 00:00:21:500: drh_hw_reset: HW reset DRH, DRH not attached to USB bus resetting DRH opening /dev/net/ifmgr/ncl... 00:00:28:562: drh_hw_reset: HW reset DRH, DRH not attached to USB bus alive opening /dev/net/ifmgr/ncl... resetting DRH opening /dev/net/ifmgr/ncl... 00:00:35:624: drh_hw_reset: HW reset DRH, DRH not attached to USB bus resetting DRH alive opening /dev/net/ifmgr/ncl... 00:00:42:686: drh_hw_reset: HW reset DRH, DRH not attached to USB bus resetting DRH opening /dev/net/ifmgr/ncl... 00:00:49:748: drh_hw_reset: HW reset DRH, DRH not attached to USB bus alive opening /dev/net/ifmgr/ncl... resetting DRH opening /dev/net/ifmgr/ncl... 00:00:56:809: drh_hw_reset: HW reset DRH, DRH not attached to USB bus resetting DRH alive opening /dev/net/ifmgr/ncl... 00:01:03:871: drh_hw_reset: HW reset DRH, DRH not attached to USB bus opening /dev/net/ifmgr/ncl... resetting DRH alive opening /dev/net/ifmgr/ncl... 00:01:10:933: drh_hw_reset: HW reset DRH, DRH not attached to USB bus resetting DRH opening /dev/net/ifmgr/ncl... 00:01:17:995: drh_hw_reset: HW reset DRH, DRH not attached to USB bus resetting DRH alive opening /dev/net/ifmgr/ncl... 00:01:25:056: drh_hw_reset: HW reset DRH, DRH not attached to USB bus opening /dev/net/ifmgr/ncl... resetting DRH alive opening /dev/net/ifmgr/ncl... 00:01:32:118: drh_hw_reset: HW reset DRH, DRH not attached to USB bus resetting DRH opening /dev/net/ifmgr/ncl... 00:01:39:180: drh_hw_reset: HW reset DRH, DRH not attached to USB bus alive opening /dev/net/ifmgr/ncl... resetting DRH opening /dev/net/ifmgr/ncl... 00:01:46:241: drh_hw_reset: HW reset DRH, DRH not attached to USB bus resetting DRH alive opening /dev/net/ifmgr/ncl... 00:01:53:303: drh_hw_reset: HW reset DRH, DRH not attached to USB bus opening /dev/net/ifmgr/ncl... resetting DRH alive opening /dev/net/ifmgr/ncl... 00:02:00:365: drh_hw_reset: HW reset DRH, DRH not attached to USB bus resetting DRH opening /dev/net/ifmgr/ncl... 00:02:07:427: drh_hw_reset: HW reset DRH, DRH not attached to USB bus resetting DRH alive opening /dev/net/ifmgr/ncl... 00:02:14:489: drh_hw_reset: HW reset DRH, DRH not attached to USB bus opening /dev/net/ifmgr/ncl... resetting DRH
Here's the capture of the serial log when I turn on the Wii U. Right now it's showing the Wii U logo, and the serial console is repeating the "resetting DRH" bit
 

SDIO

Well-Known Member
Member
Joined
Feb 13, 2023
Messages
2,454
Trophies
0
Age
28
XP
1,713
Country
Germany
Yeah the fonts are corrupted and some other system titles too.

You could already prepare the sdcard to setup the new MLC for when the NAND-AID arrives.
Use the MLCRestoreDownloader from the guide to download the MLC titles and put them in the the wafel_install folder in the root of the SD. Make sure to not have subfolders like EU or MLC or so. Just the wafel_install folder and then each title in it's folder (52 in total).
Then put the wafel_setup_mlc.ipx in the wiiu/ios_plugins folder.

If you want you can test that then on your old mlc. Just boot the SD with the first option. After the SD stops blinking remove the wafel_setup_mlc.ipx again. Maybe the wii U will then boot up again on the failing emmc.
If that works, then you are ready when the nand AID arrives. Then you can just solder it an pop the SD with the setup in and should be running again in no time
 
  • Like
Reactions: lolorlofl

lolorlofl

Well-Known Member
OP
Member
Joined
May 10, 2008
Messages
192
Trophies
1
Website
Visit site
XP
762
Country
Canada
Yeah the fonts are corrupted and some other system titles too.

You could already prepare the sdcard to setup the new MLC for when the NAND-AID arrives.
Use the MLCRestoreDownloader from the guide to download the MLC titles and put them in the the wafel_install folder in the root of the SD. Make sure to not have subfolders like EU or MLC or so. Just the wafel_install folder and then each title in it's folder (52 in total).
Then put the wafel_setup_mlc.ipx in the wiiu/ios_plugins folder.

If you want you can test that then on your old mlc. Just boot the SD with the first option. After the SD stops blinking remove the wafel_setup_mlc.ipx again. Maybe the wii U will then boot up again on the failing emmc.
If that works, then you are ready when the nand AID arrives. Then you can just solder it an pop the SD with the setup in and should be running again in no time
Should I also install the SLC titles?
 

SDIO

Well-Known Member
Member
Joined
Feb 13, 2023
Messages
2,454
Trophies
0
Age
28
XP
1,713
Country
Germany
Since you are on an older firmware that would probably be a good idea.
If you install the slc titles now, you don't need to do that later again.
 

Site & Scene News

Popular threads in this forum

General chit-chat
Help Users
    Xdqwerty @ Xdqwerty: Hi