Advertisement
Guest User

Untitled

a guest
Mar 11th, 2015
211
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.69 KB | None | 0 0
  1. sh-3.2# systemctl status persist.mount
  2. persist.mount - Droid mount for /persist
  3. Loaded: loaded (/lib/systemd/system/persist.mount; enabled)
  4. Active: inactive (dead)
  5. Where: /persist
  6. What: /dev/block/platform/msm_sdcc.1/by-name/persist
  7.  
  8. sh-3.2# systemctl status system.mount
  9. system.mount - Droid mount for /system
  10. Loaded: loaded (/lib/systemd/system/system.mount; enabled)
  11. Active: inactive (dead)
  12. Where: /system
  13. What: /dev/block/platform/msm_sdcc.1/by-name/system
  14.  
  15. sh-3.2# systemctl status local-fs-pre.target
  16. local-fs-pre.target - Local File Systems (Pre)
  17. Loaded: loaded (/lib/systemd/system/local-fs-pre.target; static)
  18. Active: active since Wed 2015-03-11 12:28:30 CET; 44s ago
  19. Docs: man:systemd.special(7)
  20.  
  21. sh-3.2# systemctl status local-fs.target
  22. local-fs.target - Local File Systems
  23. Loaded: loaded (/lib/systemd/system/local-fs.target; static)
  24. Active: active since Wed 2015-03-11 12:28:59 CET; 19s ago
  25. Docs: man:systemd.special(7)
  26.  
  27. sh-3.2# cat /etc/systemd/system/local-fs.target.wants/system.mount
  28. [Unit]
  29. Description=Droid mount for /system
  30. Before=local-fs.target
  31. After=local-fs-pre.target
  32.  
  33. [Mount]
  34. What=/dev/block/platform/msm_sdcc.1/by-name/system
  35. Where=/system
  36. Type=ext4
  37. #Options=ro,barrier=1
  38. # Options had SELinux context option:
  39.  
  40. # Default is 90 which makes mount period too long in case of
  41. # errors so drop it down a notch.
  42. TimeoutSec=10
  43.  
  44. [Install]
  45. WantedBy=local-fs.target
  46.  
  47. # From ./out/target/product/flo/root/fstab.flo :
  48. # /dev/block/platform/msm_sdcc.1/by-name/system /system ext4 ro,barrier=1 wait
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement