Closed GoogleCodeExporter closed 8 years ago
[deleted comment]
How to fix issue on android (from terminal app as root):
# Be careful, this procedure can broke boot image!!!
# Additional params for cmdline
echo -ne ",EM2" > /sdcard/cmdl.txt
# Save first 512-byte sector of boot image
dd if=/dev/block/mmcblk0p2 of=/sdcard/android-boot.img bs=512 count=1
# Check that cmdline ends at 161-th byte of mmcblk0p2 (last used byte is a0=160)
hexdump -C -n512 /dev/block/mmcblk0p2
# Add new params starting from 161-th byte
dd if=/sdcard/cmdl.txt of=/dev/block/mmcblk0p2 bs=1 seek=161
# Check new cmdline
hexdump -C -n512 /dev/block/mmcblk0p2
Original comment by Andrey.D...@gmail.com
on 28 Aug 2012 at 3:40
I'll handle this one.
Original comment by zombah
on 12 Sep 2012 at 10:37
[deleted comment]
Fixed after merging all models to one build.
Original comment by zombah
on 15 Oct 2012 at 10:35
Original issue reported on code.google.com by
Andrey.D...@gmail.com
on 28 Aug 2012 at 3:20