android.txt 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  1. Android firmware
  2. Node to specify early mount of system partition.
  3. Required properties
  4. -compatible: "android,firmware"
  5. Child nodes:
  6. ------------
  7. fstab:
  8. ------------------------------
  9. fstab entry to specify mount attributes of system partition.
  10. Required properties:
  11. -compatible: "android,fstab"
  12. Child nodes:
  13. ------------
  14. system:
  15. -----------------
  16. system partition specification.
  17. Required properties:
  18. -compatible: "android,system"
  19. -dev: block device corresponding to system partition
  20. -type: file system type of system partition
  21. -mnt_flags: mount flags
  22. -fsmgr_flags: fsmgr flags
  23. Example:
  24. firmware: firmware {
  25. android {
  26. compatible = "android,firmware";
  27. fstab {
  28. compatible = "android,fstab";
  29. system {
  30. compatible = "android,system";
  31. dev = "/dev/block/platform/msm_sdcc.1/by-name/system";
  32. type = "ext4";
  33. mnt_flags = "ro,barrier=1,discard";
  34. fsmgr_flags = "wait,slotselect";
  35. status = "ok";
  36. };
  37. };
  38. };
  39. };