1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-10-24 21:01:20 +00:00
freebsd-ports/japanese/msdosfs/files/ja-msdosfs.sh
R. Imura 183c7be52b Add new port: ja-msdosfs - mounts japanese FAT.
Be sure to edit ${FILESDIR}/revlist if you modify this
port and sync with the kernel.
2000-10-07 15:34:21 +00:00

19 lines
260 B
Bash

#!/bin/sh
# $FreeBSD$
module_dir=@@PREFIX@@/lib/ja-msdosfs
case $1 in
start)
kldload ${module_dir}/msdos_ja.ko
echo -n " JA-MSDOSFS"
;;
stop)
kldunload msdos_ja.ko
;;
*)
echo "usage: `basename $0` {start|stop}"
exit 1
;;
esac