Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
在编译 Android 源代码时,我们可以看到正在创建一个名为persist.img的图像文件。它是什么以及它的用途是什么?
persist.img 是“persist”,其中包含设备出厂后不应更改的数据,例如:芯片(wifi、bt、摄像头等)的校准数据、证书和其他安全相关文件。当然,即使它是“持久的”,您仍然可以通过 fastboot 替换它,或者如果设备已植根,则进行更改,风险自负
它与 system.img、userdata.img、tombstones.img、recovery.img 等一起是 Android 构建的一部分。
如果你想修改构建,你会改变它。