From 759c9ca8f23c09e92735160d2fb9e3fe30671f6b Mon Sep 17 00:00:00 2001 From: brucec <brucec@FreeBSD.org> Date: Mon, 13 Dec 2010 13:52:03 +0000 Subject: 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. MFC after: 3 days --- 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 e2f6c41..5b80f1d 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) { -- cgit v1.1