20220517關(guān)閉MT6765的android8.1系統(tǒng)的efuse分區(qū)
1竖幔、使用SP_Flash_Tool_v5.2052_Win給MT6765刷機(jī)的時候热监,習(xí)慣性的將刷機(jī)模式從“下載”切換到“全部格式化和下載”!
結(jié)果提示錯誤:
Smart Phone Flash Tool
Partition [efuse] No image file Exist!
OK
2湃交、臨時解決方法:
將MT6765_Android_scatter.txt總的efuse分區(qū)關(guān)閉掉奸披,或者直接拿掉這一區(qū)域的代碼习绢!
- partition_index: SYS15
? partition_name: efuse
? file_name: efuse.img
? is_download: true
? type: NORMAL_ROM
? linear_start_addr: 0xd500000
? physical_start_addr: 0xd500000
? partition_size: 0x80000
? region: EMMC_USER
? storage: HW_STORAGE_EMMC
? boundary_check: true
? is_reserved: false
? operation_type: UPDATE
? is_upgradable: false
? empty_boot_needed: false
? reserve: 0x00
修改為:
- partition_index: SYS15
? partition_name: efuse
? file_name: efuse.img
? is_download: false
? type: NORMAL_ROM
? linear_start_addr: 0xd500000
? physical_start_addr: 0xd500000
? partition_size: 0x80000
? region: EMMC_USER
? storage: HW_STORAGE_EMMC
? boundary_check: true
? is_reserved: false
? operation_type: UPDATE
? is_upgradable: false
? empty_boot_needed: false
? reserve: 0x00
3污茵、不想每一次刷機(jī)都改來改去樱报!
找了好久,終于確認(rèn)是這里:
M:\mt6765o1\device\mediatek\build\build\tools\ptgen\MT6765\ptgen.pl
? ? ? ? #Chenyee <CY_BSP_EFUSE> <chendonghai> add efuse partition for all(CSW1707A-13) begin
? ? ? ? #if ($partition_layout_process[$partition_idx]->{Partition_Name} eq "efuse")
? ? ? ? #{
? ? ? ? ? ? #if ($ArgList{EFUSE_WRITER_SUPPORT} ne "yes")
? ? ? ? ? ? #{
? ? ? ? ? ? ? ? #splice @partition_layout_process, $partition_idx, 1;
? ? ? ? ? ? ? ? #$partition_idx--;
? ? ? ? ? ? #}
? ? ? ? #}
? ? ? ? #Chenyee <CY_BSP_EFUSE> <chendonghai> add efuse partition for all(CSW1707A-13) end
修改為:
? ? ? ? #Chenyee <CY_BSP_EFUSE> <chendonghai> add efuse partition for all(CSW1707A-13) begin
? ? ? ? if ($partition_layout_process[$partition_idx]->{Partition_Name} eq "efuse")
? ? ? ? {
? ? ? ? ? ? if ($ArgList{EFUSE_WRITER_SUPPORT} ne "yes")
? ? ? ? ? ? {
? ? ? ? ? ? ? ? splice @partition_layout_process, $partition_idx, 1;
? ? ? ? ? ? ? ? $partition_idx--;
? ? ? ? ? ? }
? ? ? ? }
? ? ? ? #Chenyee <CY_BSP_EFUSE> <chendonghai> add efuse partition for all(CSW1707A-13) end
將#號注釋拿掉泞当,刷機(jī)的時候迹蛤,就沒有討厭的efuse分區(qū)的問題了!