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
2,268
Trophies
0
Age
28
XP
1,389
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,648
Trophies
1
Age
36
XP
5,530
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
2,268
Trophies
0
Age
28
XP
1,389
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
2,268
Trophies
0
Age
28
XP
1,389
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
195
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,648
Trophies
1
Age
36
XP
5,530
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: 28
  • 94.log.txt
    32 KB · Views: 21
  • mlc_checker.txt
    2.6 KB · Views: 24

SDIO

Well-Known Member
Member
Joined
Feb 13, 2023
Messages
2,268
Trophies
0
Age
28
XP
1,389
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
2,268
Trophies
0
Age
28
XP
1,389
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: 27
  • mlc_checker.txt
    2.6 KB · Views: 23

V10lator

Well-Known Member
Member
Joined
Apr 21, 2019
Messages
2,648
Trophies
1
Age
36
XP
5,530
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
2,268
Trophies
0
Age
28
XP
1,389
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

General chit-chat
Help Users
  • K3Nv2 @ K3Nv2:
    Inb4 kiiwii gives it a 0/10
  • BigOnYa @ BigOnYa:
    6/10 rating on steam
  • Psionic Roshambo @ Psionic Roshambo:
    I would like a Predator game "Kill Team" it takes place in the Jungle of the first movie, your team is sent to hunt the predator, using current tech drones and a trained team. Set traps use strategy to hunt and trap or kill the predator.
  • BigOnYa @ BigOnYa:
    Ill stick with my Battlefield. Yea a predator hunting game like that would be cool. Esp if you can be Arnold and say "Get to da choppa"
    +1
  • Psionic Roshambo @ Psionic Roshambo:
    Maybe Arnold could do a cameo voice acting, he is the one briefing you on the mission
    +1
  • Psionic Roshambo @ Psionic Roshambo:
    Honestly surprised they didn't make a tie in game for Predators that movie was awesome
  • Psionic Roshambo @ Psionic Roshambo:
    I was kinda sad the Yakuza guy died sword fighting a predator lol
  • Psionic Roshambo @ Psionic Roshambo:
    The Russian guy went out like a boss
  • Psionic Roshambo @ Psionic Roshambo:
    Double claymores to the face definitely kill a predator lol
  • BigOnYa @ BigOnYa:
    I went today and looked at a motorcycle someone was selling. I get there and the battery on it was dead, so the guy grabbed a battery charger and hooked it up. He plugged it into the wall, and the motorcycle sparked and started smoking. Come to find out the bike uses a 6 volt battery and the guy had the charger set to 12v. I said sorry to the dude and walked away. I felt bad for him tho.
  • Psionic Roshambo @ Psionic Roshambo:
    Sounds like it would be an exciting ride....
  • Psionic Roshambo @ Psionic Roshambo:
    Not sure I would want something on fire between my legs
  • BigOnYa @ BigOnYa:
    He ruined it basically. Sad cause it was a decent old bike. It would take more money to rewire the bike than it was worth tho.
  • Psionic Roshambo @ Psionic Roshambo:
    Yeah I'm sure at minimum the starter was fried
  • Psionic Roshambo @ Psionic Roshambo:
    Alternator and battery
  • BigOnYa @ BigOnYa:
    Prob alot of fried parts. It was still smoking when I left.
  • K3Nv2 @ K3Nv2:
    I would've said show me how it rides
  • Psionic Roshambo @ Psionic Roshambo:
    I always wanted one of those Smart Cars with a Hyabusa motor in it.
  • K3Nv2 @ K3Nv2:
    I'm getting sick and tired of cheap ass baking pans now
  • BigOnYa @ BigOnYa:
    I think it be cool to have one that would fit in my pickup truck bed, then I could put down ramps n drive it off.
  • K3Nv2 @ K3Nv2:
    Used this one 5 times already impossible to clean
  • BigOnYa @ BigOnYa:
    @K3Nv2 I didn't know Sonic serves they food in baking pans.
    BigOnYa @ BigOnYa: @K3Nv2 I didn't know Sonic serves they food in baking pans.