home *** CD-ROM | disk | FTP | other *** search
/ Mac Easy 2010 May / Mac Life Ubuntu.iso / casper / filesystem.squashfs / usr / share / initramfs-tools / scripts / local-premount / ntfs_3g next >
Encoding:
Text File  |  2009-04-09  |  205 b   |  15 lines

  1. #! /bin/sh
  2.  
  3. case $1 in
  4. prereqs)
  5.     exit 0
  6.     ;;
  7. esac
  8.  
  9. if [ "$ROOTFSTYPE" = ntfs ] || [ "$ROOTFSTYPE" = ntfs-3g ] || \
  10.    [ "$LOOPFSTYPE" = ntfs ] || [ "$LOOPFSTYPE" = ntfs-3g ]; then
  11.     modprobe fuse
  12. fi
  13.  
  14. exit 0
  15.