Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Fastboot flash system.img error

When I try to flash via fastboot system.img (from my custom AOSP build) to Sony Xperia Z3 I get the following error:

# fastboot flash system system.img 
sending 'system' (584106 KB)...
OKAY [ 18.294s]
writing 'system'...
FAILED (remote: size too large)
finished. total time: 18.297s

Z3 has about 2GB system partition and I have no idea why flashing fails.

like image 289
Lawiusz Avatar asked Dec 15 '15 20:12

Lawiusz


1 Answers

This forces fastboot to automatically sparse files to a given range in size K | M | G, in this case 256M

fastboot flash –S 256M system PATH_TO_SYSTEM.img
like image 179
tiger.meng Avatar answered Sep 18 '22 05:09

tiger.meng