linuxOS_PX30_CAR/external/rkscript/S21mountall.sh
2026-01-20 14:00:13 +08:00

27 lines
392 B
Bash
Executable File

#!/bin/sh
### BEGIN INIT INFO
# Provides: mount-all
# Default-Start: S
# Default-Stop:
# Description: Mount all internal partitions in /etc/fstab
### END INIT INFO
case "$1" in
start|"")
mount-helper
;;
restart|reload|force-reload)
echo "Error: argument '$1' not supported" >&2
exit 3
;;
stop|status)
# No-op
;;
*)
echo "Usage: start" >&2
exit 3
;;
esac
: