View Single Post
  #888 (permalink)  
Old 01-01-2009, 03:25 PM
rsw686's Avatar
rsw686
Lurker
Offline
 
Join Date: Dec 2008
Posts: 12
Reputation: 40
rsw686 is just getting started
Mentioned: 0 Post(s)
Tagged: 0 Thread(s)
Re: [ Dec 30 \ OS 5.2.20954 v3.8 ] Calkulin's Kitchen v1.3, ROMs & Cabs

I'd like to say thanks for the great kitchen.

One feature I added to your kitchen was the ability to remove the files from an OS.nb.payload file. I keep backups of my OEM, SYS, and ROM folders and having the template OS.nb.payload full of files it just deletes when you actually create the ROM wasted space.

Code:
    echo  (15) Reduce Extracted ROM folder
Code:
:15
    pushd ROM
    ..\Tools\ImgfsFromNb OS.nb.payload imgfs.bin
    mkdir dump
    ..\Tools\ImgfsFromDump imgfs.bin imgfs-new.bin
    del imgfs.bin
    rd dump /s /q
    ..\Tools\ImgfsToNb imgfs-new.bin OS.nb.payload OS-new.nb.payload
    del imgfs-new.bin
    del OS.nb.payload
    move OS-new.nb.payload OS.nb.payload
    popd
    goto :Main
Reply With Quote