Date: Thu, 1 Feb 2007 06:31:15 GMT From: Warner Losh <imp@FreeBSD.org> To: Perforce Change Reviews <perforce@freebsd.org> Subject: PERFORCE change 113809 for review Message-ID: <200702010631.l116VFBJ006811@repoman.freebsd.org>
next in thread | raw e-mail | index | archive | help
http://perforce.freebsd.org/chv.cgi?CH=113809 Change 113809 by imp@imp_lighthouse on 2007/02/01 06:30:17 Kinky new idea: run pccard_ether in the background. This allows devd to respond to things that are happening while pccard_ether is running. Affected files ... .. //depot/projects/arm/src/etc/devd.conf#2 edit Differences ... ==== //depot/projects/arm/src/etc/devd.conf#2 (text+ko) ==== @@ -34,13 +34,13 @@ notify 0 { match "system" "IFNET"; match "type" "ATTACH"; - action "/etc/pccard_ether $subsystem start"; + action "/etc/pccard_ether $subsystem start &"; }; notify 0 { match "system" "IFNET"; match "type" "DETACH"; - action "/etc/pccard_ether $subsystem stop"; + action "/etc/pccard_ether $subsystem stop &"; }; # @@ -63,11 +63,11 @@ # detach 0 { media-type "802.11"; - action "/etc/pccard_ether $device-name stop"; + action "/etc/pccard_ether $device-name stop &"; }; attach 0 { media-type "802.11"; - action "/etc/pccard_ether $device-name start"; + action "/etc/pccard_ether $device-name start &"; }; notify 0 { match "system" "IFNET";
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?200702010631.l116VFBJ006811>