Um ok, not sure what that is in response to though.
was a reply to my post "post 446"
Thanks Shabster
Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
Um ok, not sure what that is in response to though.
Any takers?
FWIW I replaced their netd with ours and it still boot looped. I tried changing the unsecure boot script to reflect services on our Motion, replaced their boot ramdisk with ours, and replaced recovery ramdisk with one made from our recovery built on Jenkins. Seems like we've got to figure out where in the chain we must hijack the process to keep it from noticing and resetting the device.it boot looped because of the netd file that was replaced, you could of got your system booting again, by pushing the original netd file back
FWIW I replaced their netd with ours and it still boot looped. I tried changing the unsecure boot script to reflect services on our Motion, replaced their boot ramdisk with ours, and replaced recovery ramdisk with one made from our recovery built on Jenkins. Seems like we've got to figure out where in the chain we must hijack the process to keep it from noticing and resetting the device.
well I read threw the irc log you posted and also the pasite that IOMonster_work linked to (written by jonasl of XDA)
#5348883 - Pastie
I started to look threw the misc partition image I have with a hex editor
There is not a lot of stuff in there, but trying to figure out what it is for does not seem like it would be too easy
# alright, let's do this as safely as possible.
# nuke boot and recovery first, that way if we get interrupted, you still get fastboot
echo "Erasing recovery and boot..."
echo "out of space errors are normal, dont worry about those."
dd if=/dev/zero of=/dev/block/platform/msm_sdcc.1/by-name/recovery
dd if=/dev/zero of=/dev/block/platform/msm_sdcc.1/by-name/boot
echo ""
# time to install our new bootloader!
echo "Erasing bootloader, and installing new one..."
dd if=/dev/zero of=/dev/block/platform/msm_sdcc.1/by-name/aboot
dd if=/data/local/tmp/freegee-working/aboot-$VARIANT-freegee.img of=/dev/block/platform/msm_sdcc.1/by-name/aboot
echo ""
# now, let's put in our recovery and boot.imgs
echo "Installing CWM and modified boot image for stock ROM..."
dd if=/data/local/tmp/freegee-working/recovery-$VARIANT-freegee.img of=/dev/block/platform/msm_sdcc.1/by-name/recovery
dd if=/data/local/tmp/freegee-working/boot-$VARIANT-freegee.img of=/dev/block/platform/msm_sdcc.1/by-name/boot
I seen in a thread theres a phone to be relaesed similar to the motion but I dont remember what it was. There was little to no info about it at the time i read it.
Ya, then they replace them with unlocked ones, this is the same thing I am trying to do, maybe a little different. If anyone knows any programmers, can you ask them about ASM (assembly language), and if they know it, point them to this thread please? Also, my email chrisvanderjagt@yahoo.comThey wipe recovery and about.
Ya, then they replace them with unlocked ones, this is the same thing I am trying to do, maybe a little different. If anyone knows any programmers, can you ask them about ASM (assembly language), and if they know it, point them to this thread please? Also, my email chrisvanderjagt@yahoo.com
Contacting him immediately.I think I found someone. Geko from www.electro-tech-online.com.
I just googled "someone who knows ASM" and came across this: Could someone who knows ASM please add something to a prog please? post 2, 4, and 6 shows he clearly knows about ASM. He is online now I think....
Sent from my potato
Contacting him immediately.
With ASM, we can find where the bootloader looks in the misc file for the flag telling it whether or not to check for a certificate. We change this flag to 0 to disable it, we can now flash rom's (in theory)Hi zeest, I admire your dedication to this, but could you explain what your are trying to accomplish with ASM
With ASM, we can find where the bootloader looks in the misc file for the flag telling it whether or not to check for a certificate. We change this flag to 0 to disable it, we can now flash rom's (in theory)
With ASM, we can find where the bootloader looks in the misc file for the flag telling it whether or not to check for a certificate. We change this flag to 0 to disable it, we can now flash rom's (in theory)
ok thanks
I was taking a look at the Optimus G bootloader unlock method "freegee"
and nothing in any of the scripts does anything with the misc partition
I know they want to keep secret how they did it, but I am pretty sure they are just using a new bootloader, either from a similar phone, or maybe someone had access to an engineering/development model that they pulled the aboot from
I know that IO_Monster is knowledgeable, and what he told you on IRC is good information, but did you tell him that our phone has the MSM8960L and that it uses "Secure Boot 3.0"
They only reason I ask, is that I am not sure if Secure Boot 3.0 uses the misc partition
Either way the more we learn the better, and if we have a de-compiled aboot to look at we may learn something critical
I am not so sure that you need ASM to de-compile the aboot, I think you can do it with Ida Pro, just like jonasl did
my misc partition is mostly 0s or Fs but there is some data there
here is a condensed version of what is found in my misc partition
00000800 42 53 50 20 46 6F 72 65 76 65 72 00 00 00 00 00 BSP Forever.....
00001000 06 00 00 00 A1 11 F0 88 04 00 00 00 A1 11 F0 88 ....
Where are you getting your info on Secure Boot? I would like to read into it a little, but am not finding anything useful through google.
What they did with the Optimus was much, much more complicated than what I am willing to do. They completely reassembled it from scratch, exactly the same, except leaving out the check.
BSP = Binary Space Partitioning?...that's a weird string to have in a data/reference file. I am going to assume the 0 is equivalent to binary 0, and F is equivalent to binary 1.
So we are at a dead end?