View Single Post
  #2 (permalink)  
Old 11-02-2007, 10:08 AM
dcd's Avatar
dcd
VIP Member
Offline
 
Join Date: May 2007
Posts: 575
Reputation: 2537
dcd is a VIPdcd is a VIPdcd is a VIPdcd is a VIPdcd is a VIPdcd is a VIPdcd is a VIPdcd is a VIPdcd is a VIPdcd is a VIPdcd is a VIP
Mentioned: 0 Post(s)
Tagged: 0 Thread(s)
uhmm



@echo off

rem ** cleanup any files from last run
del dump_MemoryMap.txt
del /q .\romtemp\*.*
rmdir /s /q dump


rem ** extract the nbh
mkdir nbhtemp
move *.nbh nbhtemp
cd nbhtemp
ren *.nbh RUU_signed.nbh
..\bin\nbhextract RUU_signed.nbh
ren *OS.nb OS.nb
move OS.nb ..\
cd ..
rmdir /q /s nbhtemp


rem ** split OS.nb
.\bin\nbsplit -titan OS.nb
move OS.nb.extra romtemp
move OS.nb.payload romtemp
del OS.nb


rem ** convert OS.nb.payload to Imgfs
.\bin\ImgfsFromNb .\romtemp\OS.nb.payload .\romtemp\imgfs.bin


rem ** dump imgfs.bin
.\bin\imgfstodump .\romtemp\imgfs.bin


echo Done!
pause
Reply With Quote