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

Root [ROM] DroidSmith_Force - Beta

I tore down the recovery.img
It is by far the ugliest thing I have ever seen. The default.prop is just the build.prop renamed (anyone who knows, knows you just don't do that), there are a lot of temp files still lingering around in the .img, and usb is broken worse than Kevin Ware's leg :P
I fixed most of these problems and I'm going to setup a thread with links to the DL.
 
the cwm backup image posted in the forums is just that, that what cwm does to get their images, so its exactly the same
unless you built your rom from another source O.o
 
I hope to get this booting soon. That's when the real fun begins. The stock image is so bloated with crap it is seriously going to take days to clean this thing up
 
If someone wouldn't mind running this and uploading the boot.img to dropbox

dd if=/dev/block/mmcblk0p15 of=/sdcard/boot.img
 
Did you do:
"mkbootimg --kernel zImage --ramdisk initramfs.cpio.gz --base x80200000 --cmdline 'androidboot.hardware=qcom user_debug=31 loglevel=7 kgsl.mmutype=gpummu' -o new_boot.img" or something like that?
 
I saw this in your script:

ui_print("Flashing Kernel");
package_extract_file("boot.img", "/dev/block/mmcblk0p15");
show_progress(0.100000, 0);
ui_print("");
ui_print("");

shouldn't it be:

ui_print("Flashing Kernel");
package_extract_file("boot.img", "/tmp/boot.img");
write_raw_image("/tmp/boot.img", "/dev/block/mmcblk0p15");
show_progress(0.100000, 0);
ui_print("");
ui_print("");

:confused:
 
I saw this in your script:

ui_print("Flashing Kernel");
package_extract_file("boot.img", "/dev/block/mmcblk0p15");
show_progress(0.100000, 0);
ui_print("");
ui_print("");

shouldn't it be:

ui_print("Flashing Kernel");
package_extract_file("boot.img", "/tmp/boot.img");
write_raw_image("/tmp/boot.img", "/dev/block/mmcblk0p15");
show_progress(0.100000, 0);
ui_print("");
ui_print("");

:confused:


I'll give it a shot if the boot test fails. The updater scrip I am using in modified from my warp rom
 
Well alright, and yeah I saw what u did with the warp. That was some good work. Hopefully we can have the same reaction from the community as u had there.
 
Back
Top Bottom