2_unlimited

Lenovo Moto G⁴ Plus - Прошивка через fastboot

В этой теме 18 сообщений

Lenovo Moto G⁴ Plus - Прошивки * Lenovo Moto G⁴ Plus - Кастомные прошивки

Moto G⁴ Plus - Обзоры и отзывы Moto G⁴ Plus - Обсуждение смартфона

Moto G⁴ Plus - Батарея и время работыMoto G⁴ Plus - Акссесуары

Moto G⁴ Plus - ПокупкаLenovo Moto G⁴ Plus - Вопросы и ответы
Moto G⁴ Plus - Клуб любителей (курилка)

офф, прошивка.jpg

Как прошить заводскую (стоковую) прошивку через fastboot...

Использовать для понижения (отката) версии Андроид 7➜6

 

Спойлер

Скачать и установить minimal adb&fastboot: 

minimal_adb_fastboot_v1.1.3_setup.exe

mfastboot.zip

  • Распаковываем прошивку и minimal adb&fastboot в одну папку.
Спойлер

Скриншот:

Безымянный.jpg

  • Перезагружаем телефон в режим fastboot.
  • Запускаем minimal adb&fastboot.
  • Вставляем код для adb (2 варианта: т.к. у меня на двух пк по разному)
Спойлер

Код adb:


fastboot oem fb_mode_set
fastboot flash partition gpt.bin
fastboot flash bootloader bootloader.img
fastboot flash logo logo.bin
fastboot flash boot boot.img
fastboot flash recovery recovery.img
fastboot flash dsp adspso.bin
fastboot flash oem oem.img
fastboot flash system system.img_sparsechunk.0
fastboot flash system system.img_sparsechunk.1
fastboot flash system system.img_sparsechunk.2
fastboot flash system system.img_sparsechunk.3
fastboot flash system system.img_sparsechunk.4
fastboot flash system system.img_sparsechunk.5
fastboot flash system system.img_sparsechunk.6
fastboot flash system system.img_sparsechunk.7
fastboot flash modem NON-HLOS.bin
fastboot erase modemst1
fastboot erase modemst2
fastboot flash fsg fsg.mbn
fastboot erase cache
fastboot erase userdata
fastboot erase customize
fastboot erase clogo
fastboot oem fb_mode_clear
fastboot reboot

или

Код adb (m):

Спойлер


mfastboot oem fb_mode_set
mfastboot flash partition gpt.bin
mfastboot flash bootloader bootloader.img
mfastboot flash logo logo.bin
mfastboot flash boot boot.img
mfastboot flash recovery recovery.img
mfastboot flash dsp adspso.bin
mfastboot flash oem oem.img
mfastboot flash system system.img_sparsechunk.0
mfastboot flash system system.img_sparsechunk.1
mfastboot flash system system.img_sparsechunk.2
mfastboot flash system system.img_sparsechunk.3
mfastboot flash system system.img_sparsechunk.4
mfastboot flash system system.img_sparsechunk.5
mfastboot flash system system.img_sparsechunk.6
mfastboot flash system system.img_sparsechunk.7
mfastboot flash modem NON-HLOS.bin
mfastboot erase modemst1
mfastboot erase modemst2
mfastboot flash fsg fsg.mbn
mfastboot erase cache
mfastboot erase userdata
mfastboot erase customize
mfastboot erase clogo
mfastboot oem fb_mode_clear
mfastboot reboot

 

 

  • Подключаем телефон к ПК. 
  • Жмём кнопку Enter и дожидаемся пока телефон не перезагрузится.

Лог успешной загрузки:

Спойлер

Microsoft Windows [Version 6.1.7601]
(c) Корпорация Майкрософт (Microsoft Corp.), 2009. Все права защищены.

C:\Program Files (x86)\Minimal ADB and Fastboot>fastboot oem fb_mode_set
...
OKAY [  0.016s]
finished. total time: 0.016s

C:\Program Files (x86)\Minimal ADB and Fastboot>fastboot flash partition gpt.bin

target reported max download size of 536870912 bytes
sending 'partition' (32 KB)...
OKAY [ -0.000s]
writing 'partition'...
(bootloader) Security version downgrade

(bootloader) Image primary_gpt failed validation

(bootloader) Preflash validation failed
FAILED (remote failure)
finished. total time: 0.047s

C:\Program Files (x86)\Minimal ADB and Fastboot>fastboot flash bootloader bootlo
ader.img
target reported max download size of 536870912 bytes
sending 'bootloader' (3651 KB)...
OKAY [  0.125s]
writing 'bootloader'...
(bootloader) validating: bootloader.default.xml ...
(bootloader) will pass: flash:aboot
(bootloader) will pass: flash:rpm
(bootloader) will pass: flash:tz
(bootloader) will pass: flash:hyp
(bootloader) will pass: flash:cmnlib
(bootloader) will pass: flash:keymaster
(bootloader) will pass: flash:sbl1
(bootloader) committing: bootloader.default.xml ...
(bootloader) - flashing 'emmc_appsboot.mbn' to 'aboot'
(bootloader) - flashing 'rpm.mbn' to 'rpm'
(bootloader) - flashing 'tz.mbn' to 'tz'
(bootloader) - flashing 'hyp.mbn' to 'hyp'
(bootloader) - flashing 'cmnlib.mbn' to 'cmnlib'
(bootloader) - flashing 'keymaster.mbn' to 'keymaster'
(bootloader) - flashing 'sbl1.mbn' to 'sbl1'
OKAY [  0.655s]
finished. total time: 0.780s

C:\Program Files (x86)\Minimal ADB and Fastboot>fastboot flash logo logo.bin
target reported max download size of 536870912 bytes
sending 'logo' (1848 KB)...
OKAY [  0.062s]
writing 'logo'...
OKAY [  0.078s]
finished. total time: 0.140s

C:\Program Files (x86)\Minimal ADB and Fastboot>fastboot flash boot boot.img
target reported max download size of 536870912 bytes
sending 'boot' (16384 KB)...
OKAY [  0.562s]
writing 'boot'...
(bootloader) Image not signed or corrupt

OKAY [  0.437s]
finished. total time: 0.998s

C:\Program Files (x86)\Minimal ADB and Fastboot>fastboot flash recovery recovery.img
target reported max download size of 536870912 bytes
sending 'recovery' (16484 KB)...
OKAY [  0.562s]
writing 'recovery'...
(bootloader) Image not signed or corrupt

OKAY [  0.437s]
finished. total time: 0.998s

C:\Program Files (x86)\Minimal ADB and Fastboot>fastboot flash dsp adspso.bin
target reported max download size of 536870912 bytes
sending 'dsp' (16384 KB)...
OKAY [  0.546s]
writing 'dsp'...
OKAY [  0.484s]
finished. total time: 1.030s

C:\Program Files (x86)\Minimal ADB and Fastboot>fastboot flash oem oem.img
target reported max download size of 536870912 bytes
sending 'oem' (124713 KB)...
OKAY [  4.152s]
writing 'oem'...
OKAY [  4.524s]
finished. total time: 8.676s

C:\Program Files (x86)\Minimal ADB and Fastboot>fastboot flash system system.img
_sparsechunk.0
target reported max download size of 536870912 bytes
sending 'system' (257282 KB)...
OKAY [  8.549s]
writing 'system'...
OKAY [  6.711s]
finished. total time: 15.260s

C:\Program Files (x86)\Minimal ADB and Fastboot>fastboot flash system system.img
_sparsechunk.1
target reported max download size of 536870912 bytes
sending 'system' (258607 KB)...
OKAY [  8.627s]
writing 'system'...
OKAY [  6.476s]
finished. total time: 15.103s

C:\Program Files (x86)\Minimal ADB and Fastboot>fastboot flash system system.img
_sparsechunk.2
target reported max download size of 536870912 bytes
sending 'system' (260204 KB)...
OKAY [  8.655s]
writing 'system'...
OKAY [  6.573s]
finished. total time: 15.228s

C:\Program Files (x86)\Minimal ADB and Fastboot>fastboot flash system system.img
_sparsechunk.3
target reported max download size of 536870912 bytes
sending 'system' (250512 KB)...
OKAY [  8.317s]
writing 'system'...
OKAY [  6.193s]
finished. total time: 14.510s

C:\Program Files (x86)\Minimal ADB and Fastboot>fastboot flash system system.img
_sparsechunk.4
target reported max download size of 536870912 bytes
sending 'system' (254492 KB)...
OKAY [  8.481s]
writing 'system'...
OKAY [ 10.626s]
finished. total time: 19.107s

C:\Program Files (x86)\Minimal ADB and Fastboot>fastboot flash system system.img
_sparsechunk.5
target reported max download size of 536870912 bytes
sending 'system' (257841 KB)...
OKAY [  8.566s]
writing 'system'...
OKAY [ 11.184s]
finished. total time: 19.750s

C:\Program Files (x86)\Minimal ADB and Fastboot>fastboot flash system system.img
_sparsechunk.6
target reported max download size of 536870912 bytes
sending 'system' (256191 KB)...
OKAY [  8.537s]
writing 'system'...
OKAY [ 11.312s]
finished. total time: 19.849s

C:\Program Files (x86)\Minimal ADB and Fastboot>fastboot flash system system.img
_sparsechunk.7
target reported max download size of 536870912 bytes
sending 'system' (150189 KB)...
OKAY [  4.996s]
writing 'system'...
OKAY [  6.421s]
finished. total time: 11.417s

C:\Program Files (x86)\Minimal ADB and Fastboot>fastboot flash modem NON-HLOS.bin
target reported max download size of 536870912 bytes
sending 'modem' (76861 KB)...
OKAY [  2.560s]
writing 'modem'...
OKAY [  2.075s]
finished. total time: 4.635s

C:\Program Files (x86)\Minimal ADB and Fastboot>fastboot erase modemst1
erasing 'modemst1'...
OKAY [  0.031s]
finished. total time: 0.031s

C:\Program Files (x86)\Minimal ADB and Fastboot>fastboot erase modemst2
erasing 'modemst2'...
OKAY [  0.047s]
finished. total time: 0.047s

C:\Program Files (x86)\Minimal ADB and Fastboot>fastboot flash fsg fsg.mbn
target reported max download size of 536870912 bytes
sending 'fsg' (1868 KB)...
OKAY [  0.062s]
writing 'fsg'...
OKAY [  0.125s]
finished. total time: 0.187s

C:\Program Files (x86)\Minimal ADB and Fastboot>fastboot erase cache
erasing 'cache'...
OKAY [  0.031s]
finished. total time: 0.031s

C:\Program Files (x86)\Minimal ADB and Fastboot>fastboot erase userdata
erasing 'userdata'...
OKAY [  2.012s]
finished. total time: 2.012s

C:\Program Files (x86)\Minimal ADB and Fastboot>fastboot erase customize
erasing 'customize'...
OKAY [  0.016s]
finished. total time: 0.031s

C:\Program Files (x86)\Minimal ADB and Fastboot>fastboot erase clogo
erasing 'clogo'...
OKAY [  0.031s]
finished. total time: 0.031s

C:\Program Files (x86)\Minimal ADB and Fastboot>fastboot oem fb_mode_clear
...
OKAY [ -0.000s]
finished. total time: -0.000s

C:\Program Files (x86)\Minimal ADB and Fastboot>fastboot reboot
rebooting...

finished. total time: 0.016s

C:\Program Files (x86)\Minimal ADB and Fastboot>

 

5 пользователям понравился пост

Поделиться сообщением


Ссылка на сообщение
Поделиться на другие сайты

Привет! у меня прошивка "N" номер сборки NPJ25.93-11, устанавливал как описано на сайте, никаких загрузчиков я не разблокировал, но при попытке отката на  версии Андроид 7➜6 у меня ничего не выходит!!! Код adb и Код adb (m) вводил , установка проходит на ура. Но как только телефон перезагружается после установки, андроид 7 как стоял ,так и стоит! Получается что я завис на этой версии!!!???? Может как то нужно снести 7-ку?, но без рут прав и кастомного рекавери это не сделать…

Поделиться сообщением


Ссылка на сообщение
Поделиться на другие сайты
2 часа назад, Michail Nikitin сказал:

 прошивка "N" номер сборки NPJ25.93-11,  при попытке отката на  версии Андроид 7➜6 у меня ничего не выходит!!!

Полтергейст. 

Иструкция выше написана после отката с 7 версии Андр до 6.0...основано на личном опыте!

2 часа назад, Michail Nikitin сказал:

 установка проходит на ура! 

Дайте лог, скриншоты...посмотрим.

1 пользователю понравился пост

Поделиться сообщением


Ссылка на сообщение
Поделиться на другие сайты

Лог:

Спойлер

Microsoft Windows [Version 10.0.14393]
(c) Корпорация Майкрософт (Microsoft Corporation), 2016. Все права защищены.

C:\Program Files (x86)\Minimal ADB and Fastboot>fastboot oem fb_mode_set
< waiting for device >
...
OKAY [  0.005s]
finished. total time: 0.006s

C:\Program Files (x86)\Minimal ADB and Fastboot>fastboot flash partition gpt.bin
target reported max download size of 536870912 bytes
sending 'partition' (32 KB)...
OKAY [  0.006s]
writing 'partition'...
(bootloader) Security version downgrade

(bootloader) Image primary_gpt failed validation

(bootloader) Preflash validation failed
FAILED (remote failure)
finished. total time: 0.046s

C:\Program Files (x86)\Minimal ADB and Fastboot>fastboot flash bootloader bootloader.img
target reported max download size of 536870912 bytes
sending 'bootloader' (3651 KB)...
OKAY [  0.119s]
writing 'bootloader'...
(bootloader) validating: bootloader.default.xml ...
(bootloader) will pass: flash:aboot
(bootloader) will pass: flash:rpm
(bootloader) will pass: flash:tz
(bootloader) will pass: flash:hyp
(bootloader) will pass: flash:cmnlib
(bootloader) will pass: flash:keymaster
(bootloader) will pass: flash:sbl1
(bootloader) committing: bootloader.default.xml ...
(bootloader) - flashing 'emmc_appsboot.mbn' to 'aboot'
(bootloader) - flashing 'rpm.mbn' to 'rpm'
(bootloader) - flashing 'tz.mbn' to 'tz'
(bootloader) - flashing 'hyp.mbn' to 'hyp'
(bootloader) - flashing 'cmnlib.mbn' to 'cmnlib'
(bootloader) - flashing 'keymaster.mbn' to 'keymaster'
(bootloader) - flashing 'sbl1.mbn' to 'sbl1'
OKAY [  0.514s]
finished. total time: 0.637s

C:\Program Files (x86)\Minimal ADB and Fastboot>fastboot flash logo logo.bin
target reported max download size of 536870912 bytes
sending 'logo' (1848 KB)...
OKAY [  0.062s]
writing 'logo'...
OKAY [  0.075s]
finished. total time: 0.140s

C:\Program Files (x86)\Minimal ADB and Fastboot>fastboot flash boot boot.img
target reported max download size of 536870912 bytes
sending 'boot' (16384 KB)...
OKAY [  0.524s]
writing 'boot'...
(bootloader) Security version downgrade

(bootloader) Image boot failed validation

(bootloader) Preflash validation failed
FAILED (remote failure)
finished. total time: 0.693s

C:\Program Files (x86)\Minimal ADB and Fastboot>fastboot flash recovery recovery.img
target reported max download size of 536870912 bytes
sending 'recovery' (16484 KB)...
OKAY [  0.524s]
writing 'recovery'...
(bootloader) Security version downgrade

(bootloader) Image recovery failed validation

(bootloader) Preflash validation failed
FAILED (remote failure)
finished. total time: 0.695s

C:\Program Files (x86)\Minimal ADB and Fastboot>fastboot flash dsp adspso.bin
target reported max download size of 536870912 bytes
sending 'dsp' (16384 KB)...
OKAY [  0.519s]
writing 'dsp'...
OKAY [  0.455s]
finished. total time: 0.977s

C:\Program Files (x86)\Minimal ADB and Fastboot>fastboot flash oem oem.img
target reported max download size of 536870912 bytes
sending 'oem' (124713 KB)...
OKAY [  3.933s]
writing 'oem'...
(bootloader) Security version downgrade

(bootloader) Image o failed validation

(bootloader) Invalid signed image
(bootloader) Preflash validation failed
FAILED (remote failure)
finished. total time: 3.994s

C:\Program Files (x86)\Minimal ADB and Fastboot>fastboot flash system system.img_sparsechunk.0
target reported max download size of 536870912 bytes
sending 'system' (261790 KB)...
OKAY [  8.237s]
writing 'system'...
(bootloader) Security version downgrade

(bootloader) Image s failed validation

(bootloader) Invalid signed image
(bootloader) Preflash validation failed
FAILED (remote failure)
finished. total time: 8.306s

C:\Program Files (x86)\Minimal ADB and Fastboot>fastboot flash system system.img_sparsechunk.1
target reported max download size of 536870912 bytes
sending 'system' (252965 KB)...
OKAY [  8.038s]
writing 'system'...
(bootloader) Invalid signed image
(bootloader) Preflash validation failed
FAILED (remote failure)
finished. total time: 8.055s

C:\Program Files (x86)\Minimal ADB and Fastboot>fastboot flash system system.img_sparsechunk.2
target reported max download size of 536870912 bytes
sending 'system' (255295 KB)...
OKAY [  8.083s]
writing 'system'...
(bootloader) Invalid signed image
(bootloader) Preflash validation failed
FAILED (remote failure)
finished. total time: 8.102s

C:\Program Files (x86)\Minimal ADB and Fastboot>fastboot flash system system.img_sparsechunk.3
target reported max download size of 536870912 bytes
sending 'system' (256631 KB)...
OKAY [  8.143s]
writing 'system'...
(bootloader) Invalid signed image
(bootloader) Preflash validation failed
FAILED (remote failure)
finished. total time: 8.164s

C:\Program Files (x86)\Minimal ADB and Fastboot>fastboot flash system system.img_sparsechunk.4
target reported max download size of 536870912 bytes
sending 'system' (256412 KB)...
OKAY [  8.072s]
writing 'system'...
(bootloader) Invalid signed image
(bootloader) Preflash validation failed
FAILED (remote failure)
finished. total time: 8.092s

C:\Program Files (x86)\Minimal ADB and Fastboot>fastboot flash system system.img_sparsechunk.5
target reported max download size of 536870912 bytes
sending 'system' (256741 KB)...
OKAY [  8.086s]
writing 'system'...
(bootloader) Invalid signed image
(bootloader) Preflash validation failed
FAILED (remote failure)
finished. total time: 8.108s

C:\Program Files (x86)\Minimal ADB and Fastboot>fastboot flash system system.img_sparsechunk.6
target reported max download size of 536870912 bytes
sending 'system' (256027 KB)...
OKAY [  8.063s]
writing 'system'...
(bootloader) Invalid signed image
(bootloader) Preflash validation failed
FAILED (remote failure)
finished. total time: 8.085s

C:\Program Files (x86)\Minimal ADB and Fastboot>fastboot flash system system.img_sparsechunk.7
target reported max download size of 536870912 bytes
sending 'system' (223276 KB)...
OKAY [  7.028s]
writing 'system'...
(bootloader) Invalid signed image
(bootloader) Preflash validation failed
FAILED (remote failure)
finished. total time: 7.053s

C:\Program Files (x86)\Minimal ADB and Fastboot>fastboot flash modem NON-HLOS.bin
target reported max download size of 536870912 bytes
sending 'modem' (76865 KB)...
OKAY [  2.471s]
writing 'modem'...
OKAY [  2.023s]
finished. total time: 4.496s

C:\Program Files (x86)\Minimal ADB and Fastboot>fastboot erase modemst1
erasing 'modemst1'...
OKAY [  0.031s]
finished. total time: 0.032s

C:\Program Files (x86)\Minimal ADB and Fastboot>fastboot erase modemst2
erasing 'modemst2'...
OKAY [  0.028s]
finished. total time: 0.029s

C:\Program Files (x86)\Minimal ADB and Fastboot>fastboot flash fsg fsg.mbn
target reported max download size of 536870912 bytes
sending 'fsg' (1904 KB)...
OKAY [  0.065s]
writing 'fsg'...
OKAY [  0.089s]
finished. total time: 0.155s

C:\Program Files (x86)\Minimal ADB and Fastboot>fastboot erase cache
erasing 'cache'...
OKAY [  0.019s]
finished. total time: 0.020s

C:\Program Files (x86)\Minimal ADB and Fastboot>fastboot erase userdata
erasing 'userdata'...
OKAY [  0.579s]
finished. total time: 0.581s

C:\Program Files (x86)\Minimal ADB and Fastboot>fastboot erase customize
erasing 'customize'...
OKAY [  0.014s]
finished. total time: 0.014s

C:\Program Files (x86)\Minimal ADB and Fastboot>fastboot erase clogo
erasing 'clogo'...
OKAY [  0.017s]
finished. total time: 0.017s

C:\Program Files (x86)\Minimal ADB and Fastboot>fastboot oem fb_mode_clear
...
OKAY [  0.004s]
finished. total time: 0.005s

C:\Program Files (x86)\Minimal ADB and Fastboot>fastboot reboot
 

 

 
Добавлено 4 минуты спустя:
 

Сейчас второй лог сделаю 

 
Добавлено 7 минут спустя:
 
Спойлер

Microsoft Windows [Version 10.0.14393]
(c) Корпорация Майкрософт (Microsoft Corporation), 2016. Все права защищены.

C:\Program Files (x86)\Minimal ADB and Fastboot>mfastboot oem fb_mode_set
< waiting for device >
...
OKAY [  0.005s]
finished. total time: 0.007s

C:\Program Files (x86)\Minimal ADB and Fastboot>mfastboot flash partition gpt.bin
target max-sparse-size: 256MB
sending 'partition' (32 KB)...
OKAY [  0.006s]
writing 'partition'...
(bootloader) Security version downgrade

(bootloader) Image primary_gpt failed validation

(bootloader) Preflash validation failed
FAILED (remote failure)
finished. total time: 0.043s

C:\Program Files (x86)\Minimal ADB and Fastboot>mfastboot flash bootloader bootloader.img
target max-sparse-size: 256MB
sending 'bootloader' (3651 KB)...
OKAY [  0.150s]
writing 'bootloader'...
(bootloader) validating: bootloader.default.xml ...
(bootloader) will pass: flash:aboot
(bootloader) will pass: flash:rpm
(bootloader) will pass: flash:tz
(bootloader) will pass: flash:hyp
(bootloader) will pass: flash:cmnlib
(bootloader) will pass: flash:keymaster
(bootloader) will pass: flash:sbl1
(bootloader) committing: bootloader.default.xml ...
(bootloader) - flashing 'emmc_appsboot.mbn' to 'aboot'
(bootloader) - flashing 'rpm.mbn' to 'rpm'
(bootloader) - flashing 'tz.mbn' to 'tz'
(bootloader) - flashing 'hyp.mbn' to 'hyp'
(bootloader) - flashing 'cmnlib.mbn' to 'cmnlib'
(bootloader) - flashing 'keymaster.mbn' to 'keymaster'
(bootloader) - flashing 'sbl1.mbn' to 'sbl1'
OKAY [  0.517s]
finished. total time: 0.670s

C:\Program Files (x86)\Minimal ADB and Fastboot>mfastboot flash logo logo.bin
target max-sparse-size: 256MB
sending 'logo' (1848 KB)...
OKAY [  0.062s]
writing 'logo'...
OKAY [  0.076s]
finished. total time: 0.141s

C:\Program Files (x86)\Minimal ADB and Fastboot>mfastboot flash boot boot.img
target max-sparse-size: 256MB
sending 'boot' (16384 KB)...
OKAY [  0.521s]
writing 'boot'...
(bootloader) Security version downgrade

(bootloader) Image boot failed validation

(bootloader) Preflash validation failed
FAILED (remote failure)
finished. total time: 0.691s

C:\Program Files (x86)\Minimal ADB and Fastboot>mfastboot flash recovery recovery.img
target max-sparse-size: 256MB
sending 'recovery' (16484 KB)...
OKAY [  0.524s]
writing 'recovery'...
(bootloader) Security version downgrade

(bootloader) Image recovery failed validation

(bootloader) Preflash validation failed
FAILED (remote failure)
finished. total time: 0.696s

C:\Program Files (x86)\Minimal ADB and Fastboot>mfastboot flash dsp adspso.bin
target max-sparse-size: 256MB
sending 'dsp' (16384 KB)...
OKAY [  0.520s]
writing 'dsp'...
OKAY [  0.452s]
finished. total time: 0.974s

C:\Program Files (x86)\Minimal ADB and Fastboot>mfastboot flash oem oem.img
target max-sparse-size: 256MB
sending 'oem' (124713 KB)...
OKAY [  4.037s]
writing 'oem'...
(bootloader) Security version downgrade

(bootloader) Image o failed validation

(bootloader) Invalid signed image
(bootloader) Preflash validation failed
FAILED (remote failure)
finished. total time: 4.109s

C:\Program Files (x86)\Minimal ADB and Fastboot>mfastboot flash system system.img_sparsechunk.0
target max-sparse-size: 256MB
sending 'system' (261790 KB)...
OKAY [  8.269s]
writing 'system'...
(bootloader) Security version downgrade

(bootloader) Image s failed validation

(bootloader) Invalid signed image
(bootloader) Preflash validation failed
FAILED (remote failure)
finished. total time: 8.332s

C:\Program Files (x86)\Minimal ADB and Fastboot>mfastboot flash system system.img_sparsechunk.1
target max-sparse-size: 256MB
sending 'system' (252965 KB)...
OKAY [  8.007s]
writing 'system'...
(bootloader) Invalid signed image
(bootloader) Preflash validation failed
FAILED (remote failure)
finished. total time: 8.032s

C:\Program Files (x86)\Minimal ADB and Fastboot>mfastboot flash system system.img_sparsechunk.2
target max-sparse-size: 256MB
sending 'system' (255295 KB)...
OKAY [  8.090s]
writing 'system'...
(bootloader) Invalid signed image
(bootloader) Preflash validation failed
FAILED (remote failure)
finished. total time: 8.107s

C:\Program Files (x86)\Minimal ADB and Fastboot>mfastboot flash system system.img_sparsechunk.3
target max-sparse-size: 256MB
sending 'system' (256631 KB)...
OKAY [  8.105s]
writing 'system'...
(bootloader) Invalid signed image
(bootloader) Preflash validation failed
FAILED (remote failure)
finished. total time: 8.126s

C:\Program Files (x86)\Minimal ADB and Fastboot>mfastboot flash system system.img_sparsechunk.4
target max-sparse-size: 256MB
sending 'system' (256412 KB)...
OKAY [  8.069s]
writing 'system'...
(bootloader) Invalid signed image
(bootloader) Preflash validation failed
FAILED (remote failure)
finished. total time: 8.089s

C:\Program Files (x86)\Minimal ADB and Fastboot>mfastboot flash system system.img_sparsechunk.5
target max-sparse-size: 256MB
sending 'system' (256741 KB)...
OKAY [  8.089s]
writing 'system'...
(bootloader) Invalid signed image
(bootloader) Preflash validation failed
FAILED (remote failure)
finished. total time: 8.110s

C:\Program Files (x86)\Minimal ADB and Fastboot>mfastboot flash system system.img_sparsechunk.6
target max-sparse-size: 256MB
sending 'system' (256027 KB)...
OKAY [  8.123s]
writing 'system'...
(bootloader) Invalid signed image
(bootloader) Preflash validation failed
FAILED (remote failure)
finished. total time: 8.147s

C:\Program Files (x86)\Minimal ADB and Fastboot>mfastboot flash system system.img_sparsechunk.7
target max-sparse-size: 256MB
sending 'system' (223276 KB)...
OKAY [  7.251s]
writing 'system'...
(bootloader) Invalid signed image
(bootloader) Preflash validation failed
FAILED (remote failure)
finished. total time: 7.278s

C:\Program Files (x86)\Minimal ADB and Fastboot>mfastboot flash modem NON-HLOS.bin
target max-sparse-size: 256MB
sending 'modem' (76865 KB)...
OKAY [  2.677s]
writing 'modem'...
OKAY [  2.047s]
finished. total time: 4.728s

C:\Program Files (x86)\Minimal ADB and Fastboot>mfastboot erase modemst1
erasing 'modemst1'...
OKAY [  0.035s]
finished. total time: 0.043s

C:\Program Files (x86)\Minimal ADB and Fastboot>mfastboot erase modemst2
erasing 'modemst2'...
OKAY [  0.032s]
finished. total time: 0.033s

C:\Program Files (x86)\Minimal ADB and Fastboot>mfastboot flash fsg fsg.mbn
target max-sparse-size: 256MB
sending 'fsg' (1904 KB)...
OKAY [  0.083s]
writing 'fsg'...
OKAY [  0.088s]
finished. total time: 0.179s

C:\Program Files (x86)\Minimal ADB and Fastboot>mfastboot erase cache
erasing 'cache'...
OKAY [  0.020s]
finished. total time: 0.020s

C:\Program Files (x86)\Minimal ADB and Fastboot>mfastboot erase userdata
erasing 'userdata'...
OKAY [  0.081s]
finished. total time: 0.083s

C:\Program Files (x86)\Minimal ADB and Fastboot>mfastboot erase customize
erasing 'customize'...
OKAY [  0.014s]
finished. total time: 0.015s

C:\Program Files (x86)\Minimal ADB and Fastboot>mfastboot erase clogo
erasing 'clogo'...
OKAY [  0.021s]
finished. total time: 0.025s

C:\Program Files (x86)\Minimal ADB and Fastboot>mfastboot oem fb_mode_clear
...
OKAY [  0.016s]
finished. total time: 0.022s

C:\Program Files (x86)\Minimal ADB and Fastboot>mfastboot reboot
rebooting...

finished. total time: 0.007s

 

Поделиться сообщением


Ссылка на сообщение
Поделиться на другие сайты
В 27.01.2017 в 21:06, Michail Nikitin сказал:

writing 'boot'...
(bootloader) Security version downgrade

(bootloader) Image boot failed validation

(bootloader) Preflash validation failed
FAILED (remote failure)

Эта часть лога позволяет сделать неутешительный вывод: откат (понижение версии Андроид)  без разблокировки загрузчика (соответствено - потеря гарантии) невозможен :( ... 

Поделиться сообщением


Ссылка на сообщение
Поделиться на другие сайты

@Michail Nikitin

Михаил-  а какую вы 6,0 ставите?

с индексом CID?

давайте вместе разберемся и поэкспериментируем.

Поделиться сообщением


Ссылка на сообщение
Поделиться на другие сайты

ATHENE_MPJ24.139-63_cid50_subsidy-DEFAULT_CFC.xml

1 пользователю понравился пост

Поделиться сообщением


Ссылка на сообщение
Поделиться на другие сайты
1 минуту назад, Michail Nikitin сказал:

ATHENE_MPJ24.139-63_cid50_subsidy-DEFAULT_CFC.xml

это 6,0 такая?

Это точно релиЗ?

 

Поделиться сообщением


Ссылка на сообщение
Поделиться на другие сайты
2 минуты назад, steaven сказал:

Это точно релиЗ?

 

У нас выложена ...

 

Я ею шил ... правда у меня bootloader был разлочен.

Поделиться сообщением


Ссылка на сообщение
Поделиться на другие сайты

Скачено 

 

 
Добавлено 1 минуту спустя:
 

Может в этом и вся проблема, в разлочке?

 

Поделиться сообщением


Ссылка на сообщение
Поделиться на другие сайты

Подумаю. Жаль тела нет

Поделиться сообщением


Ссылка на сообщение
Поделиться на другие сайты

Как то непродуман откат, ведь люди всегда ищут какие то эксперименты с телом,одним нравится нововведение, другие хотят откатиться на ту версию где были, к сравнению..............А тут получается без разблокировании загрузчика( а это слёт гарантии),ничего не выйдет...:podmig::podmig::podmig: 

 
Добавлено 26 минут спустя:
 

Моё мнение, стоковые прошивки лучше кастомов.....если немножко убрать ненужного мусора и речи про кастом  быть не может. Живой пример предыдущий аппарат Lenovo P70-A , я перепробовал кучу кастомных прошивок и через пару дней использования, я всегда возвращался на сток . Просто колоссальную работу проводят люди которые собирают прошивку, обдумывают всё до мелочей..........ДАЙ ИМ БОГ ЗДОРОВЬЯ И ТЕРПЕНИЯ В НЕЛЕГКОМ ТРУДЕ, И БОЛЬШОЕ СПАСИБО ВАМ АДМИНИСТРАТОРОМ, МОДЕРАТОРОМ ЗА ВАШУ ПОМОЩЬ !!!!

2 пользователям понравился пост

Поделиться сообщением


Ссылка на сообщение
Поделиться на другие сайты
45 минут назад, Michail Nikitin сказал:

Как то непродуман откат, ведь люди всегда ищут какие то эксперименты

Производитель не предполагает вмешательств извне. Раньше было проще, да. Теперь методы защиты более сложные и порой обойти их невозможно....(без потери гарантии).

4 пользователям понравился пост

Поделиться сообщением


Ссылка на сообщение
Поделиться на другие сайты

Всем добра! Подскажите, Moto G4 Plus 1642 Европеец на 2 sim. Какая для него самая последняя версия официальной прошивки для установки через RSD Lite ? Если можно, само её название файла. Чтоб я видел что искать. А то я запутался переходя по ссылки на прошивки...Какую качать не понял. Там все разные... Спасибо.

Поделиться сообщением


Ссылка на сообщение
Поделиться на другие сайты

@Алексей Хорошилов 

http://lenovo-forums.ru/topic/22925-proshivkamoto-g⁴-plus-npj2593-14/

Хотя бы по дате выхода можно посмотреть.

1 пользователю понравился пост

Поделиться сообщением


Ссылка на сообщение
Поделиться на другие сайты
В 29.01.2017 в 10:52, Michail Nikitin сказал:

ATHENE_MPJ24.139-63_cid50_subsidy-DEFAULT_CFC.xml

where is file link pls provide link

Поделиться сообщением


Ссылка на сообщение
Поделиться на другие сайты

@Sanjeev_Chauhan , unfortunately at the moment the link is lost.

There's that firmware or look here.

Поделиться сообщением


Ссылка на сообщение
Поделиться на другие сайты

Для публикации сообщений создайте учётную запись или авторизуйтесь

Вы должны быть пользователем, чтобы оставить комментарий

Создать учетную запись

Зарегистрируйте новую учётную запись в нашем сообществе. Это очень просто!


Регистрация нового пользователя

Войти

Уже есть аккаунт? Войти в систему.


Войти

  • Последние посетители   0 пользователей онлайн

    Ни одного зарегистрированного пользователя не просматривает данную страницу