aboutsummaryrefslogtreecommitdiffstats
path: root/chinese/big5fs/files/big5fs.sh
diff options
context:
space:
mode:
Diffstat (limited to 'chinese/big5fs/files/big5fs.sh')
-rw-r--r--chinese/big5fs/files/big5fs.sh5
1 files changed, 5 insertions, 0 deletions
diff --git a/chinese/big5fs/files/big5fs.sh b/chinese/big5fs/files/big5fs.sh
index f1125d0fd3cb..813302f98371 100644
--- a/chinese/big5fs/files/big5fs.sh
+++ b/chinese/big5fs/files/big5fs.sh
@@ -10,10 +10,15 @@ start)
echo -n ' Big5-msdos'
kldload /usr/local/modules/big5msdos.ko
fi
+ if [ -x @@PREFIX@@/modules/big5ntfs.ko ]; then
+ echo -n ' Big5 ntfs'
+ kldload /usr/local/modules/big5ntfs.ko
+ fi
;;
stop)
kldunload -v -n big5cd9660 && echo -n ' Big5-cd9660'
kldunload -v -n big5msdos && echo -n ' Big5-msdos'
+ kldunload -v -n big5ntfs && echo -n ' Big5-ntfs'
;;
*)
echo "Usage: big5fs.sh {start|stop}" >&2