Advertisement
Guest User

Untitled

a guest
Aug 19th, 2017
54
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.33 KB | None | 0 0
  1. #!/system/bin/sh
  2.  
  3. defaultmount() {
  4. mkdir /system/sd
  5. busybox mount -t ext4 /dev/block/mmcblk0p2 /system/sd
  6. busybox mount -t ext4 -o nodev,nosuid /dev/block/stl13 /data
  7. busybox mount -t ext4 -o nodev,nosuid /dev/block/stl14 /cache
  8. }
  9.  
  10. if [ -f /system/bin/galaxy5mount.override ]; then
  11. galaxy5mount.override
  12. else
  13. defaultmount
  14. fi
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement