Hardware Wii U Nand corrupted

Rimzi

Member
OP
Newcomer
Joined
May 30, 2023
Messages
17
Trophies
0
Age
21
XP
45
Country
Germany
Okay. But why doesn't JNUSTOOL not download this file if its there? Also how do I use this link? :)
 

SDIO

Well-Known Member
Member
Joined
Feb 13, 2023
Messages
1,973
Trophies
0
Age
28
XP
1,266
Country
Germany
Code:
00:00:05:745: FSA: ### DATA CORRUPTION ERROR ###, dev:mlc01, err:-1245211, cmd:11, path:(null)
00:00:05:745: mcp_atfs.c:444:00:00:05:745: failed to read 32 byte rv=-265291
00:00:05:745: MCP: Open FST file failed for /vol/storage_mlc01/sys/title/00050010/1004a200//code/title.fst: -265291
From the 70.log. It's crashing on the title.fst of the MiiMaker so our guess seems right
 

Rimzi

Member
OP
Newcomer
Joined
May 30, 2023
Messages
17
Trophies
0
Age
21
XP
45
Country
Germany
Code:
00:00:05:745: FSA: ### DATA CORRUPTION ERROR ###, dev:mlc01, err:-1245211, cmd:11, path:(null)
00:00:05:745: mcp_atfs.c:444:00:00:05:745: failed to read 32 byte rv=-265291
00:00:05:745: MCP: Open FST file failed for /vol/storage_mlc01/sys/title/00050010/1004a200//code/title.fst: -265291
From the 70.log. It's crashing on the title.fst of the MiiMaker so our guess seems right
Jup. But I don't know how to get a replacement title.fst... Also there are many corrupted files for the mii maker which are important for boot.
 

V10lator

Well-Known Member
Member
Joined
Apr 21, 2019
Messages
2,585
Trophies
1
Age
36
XP
5,366
Country
Germany
With a bit of luck replacing the title.tmd is enough to be able to reinstall Mii Maker through the recovery menu which would then fix the remaining corruptions.
 

Rimzi

Member
OP
Newcomer
Joined
May 30, 2023
Messages
17
Trophies
0
Age
21
XP
45
Country
Germany
With a bit of luck replacing the title.tmd is enough to be able to reinstall Mii Maker through the recovery menu which would then fix the remaining corruptions.
I just tried it. It sadly didn't work. I'm currently replacing arcboot arclayout and arcmain, hoping this will fix it
 

SDIO

Well-Known Member
Member
Joined
Feb 13, 2023
Messages
1,973
Trophies
0
Age
28
XP
1,266
Country
Germany
I think one of these titles, maybe even Mii Maker didn't have a broken title.tmd.

But Somehow JNUS is getting the FST:
Code:
No cached TMD found.
Getting missing tmd from Server!
No cached ticket found.
getting missing ticket
No cached FST (00000029) found.
Getting FST from server.
Downloading meta.xml

So I will take a look at the source to see what it is doing
 

Rimzi

Member
OP
Newcomer
Joined
May 30, 2023
Messages
17
Trophies
0
Age
21
XP
45
Country
Germany
I think one of these titles, maybe even Mii Maker didn't have a broken title.tmd.

But Somehow JNUS is getting the FST:
Code:
No cached TMD found.
Getting missing tmd from Server!
No cached ticket found.
getting missing ticket
No cached FST (00000029) found.
Getting FST from server.
Downloading meta.xml

So I will take a look at the source to see what it is doing
Interesting! That would be great news, if we could extract the FST from it! :)
Post automatically merged:

BTW it also says FST is cached, when you downloaded the Software once. So there should be somewhere a temporary folder with the file in it @SDIO
 

SDIO

Well-Known Member
Member
Joined
Feb 13, 2023
Messages
1,973
Trophies
0
Age
28
XP
1,266
Country
Germany
I see how it could be done but it would require some effort. I think moving the mii maker directory and then try to reinstall it should be fine. If it doesn't work you just move it back
 

Tbone182b

Member
Newcomer
Joined
Jun 3, 2023
Messages
11
Trophies
0
XP
175
Country
Netherlands
@Rimzi The clone beeing corrupted is expected: It cloned the corruptions too. So now we will start to fix this corruptions. In any case you'll only boot from the clone from now on.

(snip)

In this prompt do the following:
Code:
w.cd("/vol/storage_mlc01")
w.mkdir("corrupted", 0")
w.mv("usr/boss/00050000/10102400/user", "corrupted/01")
w.mv("usr/boss/00050002/1012be01/user", "corrupted/02")
w.mv("usr/boss/00050010/10040200/user", "corrupted/03")
w.mv("usr/boss/00050010/1004c200/user", "corrupted/04")
w.mv("usr/save/00050000/10102100/user", "corrupted/05")
w.mv("usr/save/00050000/10102400/user", "corrupted/06")
w.mv("usr/save/00050000/10102f00/user", "corrupted/07")
w.mv("usr/save/00050000/10105700/meta", "corrupted/08")
w.mv("usr/save/00050000/1010ed00/user", "corrupted/09")
w.mv("usr/save/00050000/1018dd00/user", "corrupted/10")
w.mv("usr/save/00050000/10195d00/user", "corrupted/11")
w.mv("usr/save/00050000/101fed00/user", "corrupted/12")
w.mv("usr/save/00050002/1012b101", "corrupted/13")
w.mv("usr/save/00050002/1012be01/user", "corrupted/14")
w.mv("usr/save/00050010/10040200/user", "corrupted/15")
w.mv("usr/save/00050010/1004d200/user", "corrupted/16")
w.mv("usr/save/00050030/10016200", "corrupted/17")
w.mv("usr/save/00050030/10017200", "corrupted/18")
flush_mlc()
Don't copy and paste that codeblock but execute every line seperately as some of them need confirmation. Note that at the time of writing there's no way to remove this corrupted folders/quotas. We just move them away where they won't cause a crash except when doing a factory reset. So do not try to factory reset in the future.

(snip)
Going through a similar process myself, I've been following this thread from a distance. While my MLC dump and check were running, I tried to understand the logic behind what actions you take based on the log provided. I understand that you're trying to move all corrupted files/folders, but for some reason you _are_ moving "usr/boss/00050000/10102400" (Wii Fit U?) but _are not_ moving "usr/boss/00050000/10102100" (Nintendoland)? What's the reason behind that, so that I can try to action my own log soon.

[edit]
My current logic:
- OpenDir-errors under "/usr/boss" and "/usr/save": move
- ReadFile-errors under "/usr/boss" and "/usr/save": ignore
- All errors under "/usr/title": remove the entire title
- All errors under "/sys/title": Download through a NUS downloader and install through recovery_menu
 
Last edited by Tbone182b,

V10lator

Well-Known Member
Member
Joined
Apr 21, 2019
Messages
2,585
Trophies
1
Age
36
XP
5,366
Country
Germany
What's the reason behind that
I simply missed them when going through 1700+ corruptions and will get back to them after the current issue had been fixed.

Please note that we're not moving files. Files can be deleted and we did that by removing or reinstalling titles already. Right now we have some corrupted files preventing titles from getting reinstalled but this seems to be a special corner case.

//EDIT: @Rimzi Try removing Mii Maker (delete_title("/vol/storage_mlc01/sys/title/00050010/1004a200", 1) with wupclient) before reinstalling it.

//EDIT²: And in case that worked I overlooked some corruptions before, so we'll handle them now:
Code:
w.mv("/vol/storage_mlc01/usr/boss/00050000/10102100/user/80000006", "/vol/storage_mlc01/corrupted/19")
w.rm("/vol/storage_mlc01/usr/boss/00050010/10066000/user/common/80000004/killer/didx.db")
w.rm("/vol/storage_mlc01/usr/boss/00050010/10066000/user/common/data/killer/000028f0")
w.rm("/vol/storage_mlc01/usr/boss/00050010/10066000/user/common/data/killer/00002928")
w.rm("/vol/storage_mlc01/usr/boss/00050010/10066000/user/common/data/killer/0000293b")
w.rm("/vol/storage_mlc01/usr/boss/00050010/10066000/user/common/data/killer/0000294e")
w.rm("/vol/storage_mlc01/usr/boss/00050010/10066000/user/common/data/killer/00002976")
w.rm("/vol/storage_mlc01/usr/boss/00050010/10066000/user/common/data/killer/00002980")
w.rm("/vol/storage_mlc01/usr/boss/00050010/10066000/user/common/data/killer/000029d8")
w.rm("/vol/storage_mlc01/usr/save/00050030/10012200/user/80000009/psv.bin")
w.rm("/vol/storage_mlc01/usr/save/00050030/10014200/user/80000006/psv.bin")
After that remove the savegames of Nintendo Land and Super Mario Maker from Data Management.

//EDIT³: After reinstalling Mii Maker and removing the files as told above you might be able to fix the remaining titles (ECO Process, Wii U Electronic Manual, Friend List and Nintendo TVii) by simply reinstalling them with NUSspli. ;) After you did anything don't forget to run MLC checker again to see if we missed something.
 
Last edited by V10lator,

Rimzi

Member
OP
Newcomer
Joined
May 30, 2023
Messages
17
Trophies
0
Age
21
XP
45
Country
Germany
Well Guys I'm back! So you're definitively asking yourself, what have I done to the Wii U? Well I'll tell ya:

1. Got the corrupted title.fst from another working Wii U and replaced it + installed Mii Maker
2. Homebrewed the Console successfully
3. Installed NUSspli and tried reinstalling the broken titles. Some worked, some didn't. I backed them up before via FTP and removed them with FTP, before trying to install them with NUSspli. Worked.
4. Tried removing the save files with the Data manager. Problem: It loads to infinity with "preparing" showing on the screen. Probably a common issue with corrupted systems... Manually removed only the corrupted save and boss files (backed them up as well), did nothing. Will send the log in the attachments.

Well that's how much I've come so far. Did rerun MLC Checker (attachment).
 

Attachments

  • 93.log.txt
    32 KB · Views: 26
  • 94.log.txt
    32 KB · Views: 19
  • mlc_checker.txt
    2.6 KB · Views: 22

SDIO

Well-Known Member
Member
Joined
Feb 13, 2023
Messages
1,973
Trophies
0
Age
28
XP
1,266
Country
Germany
I can't see anything obvious. Maybe try to reinstall the Systems Settings, if you haven't done that yet.
 

SDIO

Well-Known Member
Member
Joined
Feb 13, 2023
Messages
1,973
Trophies
0
Age
28
XP
1,266
Country
Germany
Are you sure that are the right logs? One shows just corruption, but not where and the other has a cfw running.
Post automatically merged:

Maybe try deleting all the user titles using the wupclient
 
Last edited by SDIO,

Rimzi

Member
OP
Newcomer
Joined
May 30, 2023
Messages
17
Trophies
0
Age
21
XP
45
Country
Germany
Are you sure that are the right logs? One shows just corruption, but not where and the other has a cfw running.
Post automatically merged:

Maybe try deleting all the user titles using the wupclient
I fixed it by deleting all the game save files manually using ftp. (Only in the 00050000 folder! The other folders contain system save data). Now it's working. But by accident, I found out, that the friends list is still not working, even after redownloading and reinstalling the program. It crashes with error 160-2203. System Log and MLC Checker attached.
 

Attachments

  • 99.log.txt
    32 KB · Views: 23
  • mlc_checker.txt
    2.6 KB · Views: 20

V10lator

Well-Known Member
Member
Joined
Apr 21, 2019
Messages
2,585
Trophies
1
Age
36
XP
5,366
Country
Germany
@Rimzi
Code:
00:00:58:440: MCP: loaded and parsed 'preload.txt' at '/vol/storage_mlc01/sys/title/00050030/1001520a/code'
00:00:58:441: MCP: Preparing frd.rpx
00:00:58:447: MCP: Mapping /vol/content to /vol/storage_mlc01/sys/title/00050030/1001520a/content
00;00;58;327: DIAG:Result PrepareTitle(0x000500301001520A) came back with cosxml(0x000500301001520A)
Code:
00;00;58;843: ***frd TEXT 2 Decompression (1858213->3954560) failure.
00;00;58;843: ***LiSetupOneRPL(frd) failed with err=-470087.
Code:
<><><><><><><> fatal error process called <><><><><><><>
00;01;00;004: TYPE: Corruption(2)
00;01;00;004: CODE: 1602203
00;01;00;004: Process: 11
00;01;00;004: Internal Code: -470087
00;01;00;004: Function ZLIB_UncompressFromStream, Line:419
While I never saw this before it looks like it fails decompressing the TEXT section of the frd.rpx (which is the friend list executable, title ID 000500301001520A).

Did you try deinstalling the friend list before reinstalling it (or just use NUSspli to reinstall, it will deinstall before automatically) ?
 

SDIO

Well-Known Member
Member
Joined
Feb 13, 2023
Messages
1,973
Trophies
0
Age
28
XP
1,266
Country
Germany
Interestingly the friends list on my Wii U also had a curruption that wasn't detected by the file system (and therefore also not detected by mlc checker), but for me it was the background music and not the executable. Reinstalling it with NUSPli fixed it for me.
If Nuspli doesn't help, try moving the whole folder of the friends list away befor trying to reinstall it.
 

Rimzi

Member
OP
Newcomer
Joined
May 30, 2023
Messages
17
Trophies
0
Age
21
XP
45
Country
Germany
Yes I tried deinstalling it and reinstalling it via nusspli. Even deleted it per FTP and reinstalled it with nusspli. Still no change :/
 

Site & Scene News

Popular threads in this forum

Recent Content

General chit-chat
Help Users
  • No one is chatting at the moment.
    K3Nv2 @ K3Nv2: Sorry for accidentally bending over