From e796acb790bbf36b747408f55daf6fa125fcd5be Mon Sep 17 00:00:00 2001 From: brucec Date: Thu, 16 Dec 2010 14:57:06 +0000 Subject: [PATCH] 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) git-svn-id: svn://svn.freebsd.org/base/stable/8@216484 ccf9f872-aa2e-dd11-9fc8-001c23d0bc1f --- usr.sbin/sysinstall/media.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/usr.sbin/sysinstall/media.c b/usr.sbin/sysinstall/media.c index 61a3f186f..13cd13f2d 100644 --- a/usr.sbin/sysinstall/media.c +++ b/usr.sbin/sysinstall/media.c @@ -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) { -- 2.45.0