I know that /data partition contains user-generated data (/data/app - user apps, /data/data - app data, etc).
But what is the /data/system folder used for, and does it have any significance in the boot procedure (e.g. - boot scripts, etc)?
A sub-folder-wise explanation would be preferred.
/system/init.d/./data/system/typically stores system configuration files used by hardware or controllers, things that apps do not have access to. Driver configuration is also stored in/data/misc/. – GiantTree Sep 15 '16 at 17:26