1 1.1 lukem #!/bin/sh 2 1.1 lukem # 3 1.1 lukem # $NetBSD: dmesg,v 1.1 2000/03/10 11:53:25 lukem Exp $ 4 1.1 lukem # 5 1.1 lukem 6 1.1 lukem # PROVIDE: dmesg 7 1.1 lukem # REQUIRE: systemfs 8 1.1 lukem 9 1.1 lukem . /etc/rc.subr 10 1.1 lukem . /etc/rc.conf 11 1.1 lukem 12 1.1 lukem name="dmesg" 13 1.1 lukem start_precmd="checkyesno dmesg" 14 1.1 lukem start_cmd="dmesg $dmesg_flags > /var/run/dmesg.boot" 15 1.1 lukem stop_cmd=":" 16 1.1 lukem 17 1.1 lukem run_rc_command "$1" 18