View Single Post
Old 12-29-2015, 04:06 PM   #14
knc1
Going Viral
knc1 ought to be getting tired of karma fortunes by now.knc1 ought to be getting tired of karma fortunes by now.knc1 ought to be getting tired of karma fortunes by now.knc1 ought to be getting tired of karma fortunes by now.knc1 ought to be getting tired of karma fortunes by now.knc1 ought to be getting tired of karma fortunes by now.knc1 ought to be getting tired of karma fortunes by now.knc1 ought to be getting tired of karma fortunes by now.knc1 ought to be getting tired of karma fortunes by now.knc1 ought to be getting tired of karma fortunes by now.knc1 ought to be getting tired of karma fortunes by now.
 
knc1's Avatar
 
Posts: 17,212
Karma: 18210809
Join Date: Feb 2012
Location: Central Texas
Device: No K1, PW2, KV, KOA
Well, not what I was looking for, but might be useful information . . . .

The fastboot commands recognized by the u-boot in 5.6.5 firmware:
Spoiler:

Code:
"getvar"     /* Read a config/version variable from the bootloader. */

"version-bootloader"    /* Version string for the Bootloader. */

"version"    /* Version of FastBoot protocol supported. */

"product"    /* Name of the product */

"serialno"   /* Product serial number */

"secure"     /* If the value is "yes", this is a secure
                bootloader requiring a signature before
                it will install or boot images. */
             // Hardcoded as "no"
                
"setvar"     /* Set a config variable in the bootloader. */

"download"   /* Write data to memory which will be later used
                by "boot", "ramdisk", "flash", etc.  The client
                will reply with "DATA%08x" if it has enough
                space in RAM or "FAIL" if not.  The size of
                the download is remembered. */
                
"verify"     /* Send a digital signature to verify the downloaded
                data.  Required if the bootloader is "secure"
                otherwise "flash" and "boot" will be ignored. */

"flash"      /* Write the previously downloaded image to the
                named partition (if possible). */

"eraseall"   // No description provided

"erase"      /* Erase the indicated partition (clear to 0xFFs) */

"check"      // Test crc32 of a partition

"boot"       /* The previously downloaded data is a boot.img
                and should be booted according to the normal
                procedure for a boot.img */

"continue"   /* Kick out to the bootloader prompt */

"reboot"     /* Reboot the device. */

"powerdown"  /* Power off the device. */

"pass"       /* Flash pass pattern on (green) LED */

"fail"       /* Flash fail pattern on (red) LED */

Note: the "ramdisk" download is not supported.
knc1 is offline   Reply With Quote