1
0
Files
irix-657m-src/eoe/cmd/initpkg/init.d/machdepstart.ip30
2022-09-29 17:59:04 +03:00

25 lines
426 B
Bash
Executable File

#! /sbin/sh
# machine dependent startup script for the IP30 (OCTANE) system.
# this script will be run once for each system boot.
#
# "$Revision: 1.1 $"
case "$1" in
'start')
# Transfer any logged information from the Flash PROM into SYSLOG.
# see flash(1m) and syslog(1m) for more information.
/usr/sbin/flash -L
exit 0
;;
'stop')
exit 0
;;
*)
echo "usage: $0 {start|stop}"
;;
esac