home *** CD-ROM | disk | FTP | other *** search
/ Mac Easy 2010 May / Mac Life Ubuntu.iso / casper / filesystem.squashfs / usr / share / initramfs-tools / hooks / ntfs_3g < prev    next >
Encoding:
Text File  |  2009-04-09  |  291 b   |  23 lines

  1. #! /bin/sh -e
  2.  
  3. PREREQ="fuse_utils"
  4.  
  5. prereqs () {
  6.     echo "$PREREQ"
  7. }
  8.  
  9. case $1 in
  10. prereqs)
  11.     prereqs
  12.     exit 0
  13.     ;;
  14. esac
  15.  
  16. . /usr/share/initramfs-tools/hook-functions
  17.  
  18. copy_exec /bin/ntfs-3g /bin
  19. ln -s /bin/ntfs-3g "$DESTDIR/sbin/mount.ntfs-3g"
  20. ln -s /bin/ntfs-3g "$DESTDIR/sbin/mount.ntfs"
  21.  
  22. exit 0
  23.