Android_programmer_camera
Android_programmer_camera

Reputation: 13369

What is purpose of using System.img in Android?

What is meant by System.img in Android? What is the purpose of using it?

Upvotes: 10

Views: 23794

Answers (2)

Octavian Helm
Octavian Helm

Reputation: 39605

This is the actual system image. It's the OS ... kind of. Look here at point four.

EDIT: To be more precise the system image along with the kernel image are the forming the OS. The system image alone is one part of the OS.

Upvotes: 2

Matthieu
Matthieu

Reputation: 16417

It's the Android file system, which means all the support files that Android needs, the applications, but also the framework, the Dalvik VM, initialization scripts and so on.

Another part of the file system would be the userdata.img which is mostly empty when you compile the framework.

It is not the OS, that would be either a plain zImage or boot.img (and recovery.img for to boot in recovery mode).

Upvotes: 9

Related Questions