Advertisement
Guest User

Untitled

a guest
Oct 30th, 2016
933
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.23 KB | None | 0 0
  1. # Nand dump + rednand
  2. # requirements:
  3. # 16gb SD for 8gb console or
  4. # 64gb SD for 32gb console
  5.  
  6. # Download FIX94's iosuhax (has useful build scripts)
  7. git clone https://github.com/dimok789/iosuhax.git fix94iosuhax
  8.  
  9. # Download dimok's iosuhax (has fw.img for dumper/rednand)
  10. git clone https://github.com/dimok789/iosuhax.git dimokiosu
  11.  
  12. cd dimokiosu/
  13.  
  14. # Copy over the fw downloading script
  15. mkdir bin
  16. cp ../fix94iosuhax/bin/getfwimg.py bin
  17.  
  18. # Copy over the section downloading script
  19. mkdir sections
  20. cp ../fix94iosuhax/sections/gensections.py sections
  21.  
  22. # Edit the two keys and IV in bin/getfwimg.py (top of file)
  23. # Edit in the key if not already there in scripts/anpack.py (line 163)
  24.  
  25. # run the python stock fw.img downloader
  26. cd bin
  27. python getfwimg.py
  28.  
  29. # generate the sections
  30. cd ../sections/
  31. python gensections.py
  32.  
  33. # Compile the dumper/rednand fw.img
  34. cd ..
  35. make
  36.  
  37. # if you get this error:
  38. # ios_fs/ios_fs.syms(44) error: Parse error '
  39. # ios_fs/ios_fs.syms(46) error: Parse error '
  40. # Take a look at ios_fs/ios_fs.syms in a text editor, there may be some gibberish
  41. # towards the bottom, which is creating a parsing error
  42.  
  43. # If the build is successful, the fw.img file that is now in the current directory
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement