[d-i-commits] r32184 - in trunk/packages/hw-detect: . debian

Colin Watson cjwatson at costa.debian.org
Wed Nov 16 20:52:25 UTC 2005


Author: cjwatson
Date: 2005-11-16 20:52:24 +0000 (Wed, 16 Nov 2005)
New Revision: 32184

Modified:
   trunk/packages/hw-detect/debian/changelog
   trunk/packages/hw-detect/hw-detect.sh
Log:
* If udevstart is missing, try udevsynthesize instead to try to get udev
  to create pending device nodes.

Modified: trunk/packages/hw-detect/debian/changelog
===================================================================
--- trunk/packages/hw-detect/debian/changelog	2005-11-16 20:51:53 UTC (rev 32183)
+++ trunk/packages/hw-detect/debian/changelog	2005-11-16 20:52:24 UTC (rev 32184)
@@ -1,3 +1,10 @@
+hw-detect (1.26) UNRELEASED; urgency=low
+
+  * If udevstart is missing, try udevsynthesize instead to try to get udev
+    to create pending device nodes.
+
+ -- Colin Watson <cjwatson at debian.org>  Wed, 16 Nov 2005 17:47:02 +0000
+
 hw-detect (1.25) unstable; urgency=low
 
   [ Colin Watson ]

Modified: trunk/packages/hw-detect/hw-detect.sh
===================================================================
--- trunk/packages/hw-detect/hw-detect.sh	2005-11-16 20:51:53 UTC (rev 32183)
+++ trunk/packages/hw-detect/hw-detect.sh	2005-11-16 20:52:24 UTC (rev 32184)
@@ -798,6 +798,8 @@
 # Make sure udev creates device nodes in time.
 if type udevstart >/dev/null 2>&1; then
 	udevstart
+elif type udevsynthesize >/dev/null 2>&1; then
+	udevsynthesize
 fi
 
 # Also let userdevfs rescan the devices.




More information about the d-i-commits mailing list