• After 15+ years, we've made a big change: Android Forums is now Early Bird Club. Learn more here.

Root Updater-script

lMonsterl

Android Expert
Ok guys if we wanna get stuff done were going to have to pull together a little.

we need to figure out how to make a updater-script or if another is compatible so we can do more (roms, themes, flash cwm from recovery)
 
using dsi android kitchen will make you a updater-script while building rom. The problem with it is that its not set up right. So you have to edit the updater-script to get it to boot right! First thing is i need a STOCK CLEAN nandroid!
 
using dsi android kitchen will make you a updater-script while building rom. The problem with it is that its not set up right. So you have to edit the updater-script to get it to boot right! First thing is i need a STOCK CLEAN nandroid!

i can do it when im off work but that will be a while. Someone just needs to do a factory reset, make a backup, upload it, and profit!
 
Not sure if this helps anyone but I tried out dsi android kitchen on my LG Ignite rom and the updater-script file it outputs mounts the system partition the wrong way I believe.

format("MTD", "system");
mount("MTD", "system", "/system");

Should be:
format("ext4", "EMMC", "/dev/block/mmcblk0p5");
mount("ext4", "EMMC", "/dev/block/mmcblk0p5", "/system");
 
You edit before you finish the building the rom. When it builds the updater-script then it tells you to accept this change thats when you edit the script and then proceed after your done!
 
Back
Top Bottom