Advertisement
Guest User

Untitled

a guest
Jan 18th, 2018
130
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.32 KB | None | 0 0
  1. firmware {
  2. android {
  3. compatible = "android,firmware";
  4. fstab {
  5. compatible = "android,fstab";
  6. #ifndef CONFIG_MTK_AB_OTA_UPDATER
  7. system {
  8. compatible = "android,system";
  9. dev = "/dev/block/platform/mtk-msdc.0/11230000.msdc0/by-name/system";
  10. type = "ext4";
  11. mnt_flags = "ro";
  12. #ifndef CONFIG_MTK_DM_VERITY_OFF
  13. fsmgr_flags = "wait,verify";
  14. #else
  15. fsmgr_flags = "wait";
  16. #endif
  17. };
  18. #endif
  19. #ifndef CONFIG_MTK_LATE_MOUNT
  20. vendor {
  21. compatible = "android,vendor";
  22. dev = "/dev/block/platform/mtk-msdc.0/11230000.msdc0/by-name/vendor";
  23. type = "ext4";
  24. mnt_flags = "ro";
  25. #ifndef CONFIG_MTK_AB_OTA_UPDATER
  26. #ifndef CONFIG_MTK_DM_VERITY_OFF
  27. fsmgr_flags = "wait,verify";
  28. #else
  29. fsmgr_flags = "wait";
  30. #endif
  31. #else
  32. #ifndef CONFIG_MTK_DM_VERITY_OFF
  33. fsmgr_flags = "wait,slotselect,verify";
  34. #else
  35. fsmgr_flags = "wait,slotselect";
  36. #endif
  37. #endif
  38. };
  39. #endif
  40. #ifdef CONFIG_TARGET_COPY_OUT_ODM
  41. odm {
  42. compatible = "android,odm";
  43. dev = "/dev/block/platform/mtk-msdc.0/11230000.msdc0/by-name/odm";
  44. type = "ext4";
  45. mnt_flags = "ro";
  46. #ifndef CONFIG_MTK_AB_OTA_UPDATER
  47. fsmgr_flags = "wait";
  48. #else
  49. fsmgr_flags = "wait,slotselect";
  50. #endif
  51. };
  52. #endif
  53. };
  54. };
  55. };
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement