=================================================================== RCS file: /cvs/openbsd/update_openbsd/update_openbsd,v retrieving revision 1.30 retrieving revision 1.31 diff -u -r1.30 -r1.31 --- openbsd/update_openbsd/update_openbsd 2009/12/10 18:21:51 1.30 +++ openbsd/update_openbsd/update_openbsd 2009/12/10 19:23:11 1.31 @@ -1,5 +1,5 @@ #!/bin/sh -# $RedRiver: update_openbsd,v 1.29 2009/12/10 06:51:28 andrew Exp $ +# $RedRiver: update_openbsd,v 1.30 2009/12/10 18:21:51 andrew Exp $ installed_sets() { local misc=/usr/share/doc/README @@ -550,4 +550,14 @@ echo New kernel installed. Please reboot! if [ -e /sbin/oreboot ]; then echo Possibly using /sbin/oreboot +fi + +local _send_dmesg=`dirname $0`/send_dmesg +if [ -e "$_send_dmesg" ]; then + if[ -e $RELEASEDIR/.send_dmesg ]; then + $_send_dmesg + rm -f $RELEASEDIR/.send_dmesg + else + touch $RELEASEDIR/.send_dmesg + fi fi