Advertisement
wiiubru

Nand Dump + RedNand

Oct 30th, 2016
5,728
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.22 KB | None | 0 0
  1. # EDIT: for more up-to-date compiling instructions, see here: http://pastebin.com/by7Sm9vB
  2.  
  3. # Nand dump + rednand
  4. # requirements:
  5. # 16gb SD for 8gb console or
  6. # 64gb SD for 32gb console
  7. # A bigger card will work for both too, doesn't have to be exact
  8.  
  9. # Download FIX94's iosuhax (has useful build scripts)
  10. git clone https://github.com/FIX94/iosuhax.git fix94iosuhax
  11.  
  12. # Download dimok's iosuhax (has fw.img for dumper/rednand)
  13. git clone https://github.com/dimok789/iosuhax.git dimokiosu
  14.  
  15. cd dimokiosu/
  16.  
  17. # Copy over the fw downloading script
  18. mkdir bin
  19. cp ../fix94iosuhax/bin/getfwimg.py bin
  20.  
  21. # Copy over the section downloading script
  22. mkdir sections
  23. cp ../fix94iosuhax/sections/gensections.py sections
  24.  
  25. # Edit the two keys and IV in bin/getfwimg.py (top of file)
  26. # Edit in the key if not already there in scripts/anpack.py (line 163)
  27.  
  28. # run the python stock fw.img downloader
  29. cd bin
  30. python getfwimg.py
  31.  
  32. # generate the sections
  33. cd ../sections/
  34. python gensections.py
  35.  
  36. # Compile the dumper/rednand fw.img
  37. cd ..
  38. make
  39.  
  40. # if you get this error:
  41. # ios_fs/ios_fs.syms(44) error: Parse error '
  42. # ios_fs/ios_fs.syms(46) error: Parse error '
  43. # Take a look at ios_fs/ios_fs.syms in a text editor, there may be some gibberish
  44. # towards the bottom, which is creating a parsing error
  45. # For example, "_bss_start" should be just "_bss_start"
  46.  
  47. # If the build is successful, the fw.img file that is now in the current directory
  48. # can be placed on the sd card in sd:/fw.img
  49.  
  50. # After this, run CFW booter (get it here: http://wiiubru.com/appstore )
  51. # to start the nand dump. (This will format your SD card)
  52.  
  53. # Once the dump is complete, you can back it up on PC with this program:
  54. # https://github.com/dimok789/iosuhax/releases
  55. # ** If you're on mac/linux, you can back it up using dd or Disk Utility
  56.  
  57. # And also copy the same fw.img to sd:/fw.img to boot rednand.
  58.  
  59. # This version of rednand has signature patches, but the method to repack
  60. # homebrew in NUS format is not yet known. It is actively being worked on.
  61.  
  62. # Until then, homebrew apps still cannot be installed to the home menu.
  63.  
  64. # if you have issues, you can cross reference with http://pastebin.com/jwR99uAx
  65. # or ask us for assistance :)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement