I'm a beginner, and at the moment I'm trying just to repack original boot image. I've discovered that boot partition is on the "/dev/block/mmcblk0p7", so I pulled it with adb pull /dev/block/mmcblk0p7 original_boot.img
Then with tools from https://forum.xda-developers.com/showthread.php?t=2319018 I've unpacked original boot and then recompiled it. But then my image don't boot. Flashing it with TWRP caused bootloop. Where am I wrong?
Asked
Active
Viewed 84 times
0

Nonono
- 1
unpack original_boot.img
then used the command which Boot.img tools provided when unpacked:mkbootimg --kernel zImage --ramdisk initramfs.cpio.gz --base 0x4dffff00 --cmdline 'bootopt=64S3,32N2,64N2' --board '1450664547' -o new_boot.img
– Nonono Mar 28 '20 at 16:16