svn commit: r216484 - stable/8/usr.sbin/sysinstall

Bruce Cran brucec at FreeBSD.org
Thu Dec 16 14:57:07 UTC 2010


Author: brucec
Date: Thu Dec 16 14:57:06 2010
New Revision: 216484
URL: http://svn.freebsd.org/changeset/base/216484

Log:
  MFC r216407:
  
  USB probing often takes a long time and finishes finding devices after init
  has started. In the case of sysinstall, this means that it has already built
  its list of devices before probing finishes. Add a hint for users who have
  booted from a USB stick only to find that sysinstall can't find it.
  
  Approved by:	re (kensmith)

Modified:
  stable/8/usr.sbin/sysinstall/media.c
Directory Properties:
  stable/8/usr.sbin/sysinstall/   (props changed)

Modified: stable/8/usr.sbin/sysinstall/media.c
==============================================================================
--- stable/8/usr.sbin/sysinstall/media.c	Thu Dec 16 11:58:50 2010	(r216483)
+++ stable/8/usr.sbin/sysinstall/media.c	Thu Dec 16 14:57:06 2010	(r216484)
@@ -239,7 +239,7 @@ mediaSetUSB(dialogMenuItem *self)
 	cnt = deviceCount(devs);
 
 	if (!cnt) {
-		msgConfirm("No USB devices found!");
+		msgConfirm("No USB devices found (try Options/Re-scan Devices)");
 		return DITEM_FAILURE | DITEM_CONTINUE;
 	}
 	else if (cnt > 1) {


More information about the svn-src-stable-8 mailing list