diff options
author | brucec <brucec@FreeBSD.org> | 2010-12-13 13:52:03 +0000 |
---|---|---|
committer | brucec <brucec@FreeBSD.org> | 2010-12-13 13:52:03 +0000 |
commit | 759c9ca8f23c09e92735160d2fb9e3fe30671f6b (patch) | |
tree | f6d6a13eda575b630de8726de7cc6afc9733b57d | |
parent | de77cdc7c156e3a31c8eaab3a64902ed66228129 (diff) | |
download | FreeBSD-src-759c9ca8f23c09e92735160d2fb9e3fe30671f6b.zip FreeBSD-src-759c9ca8f23c09e92735160d2fb9e3fe30671f6b.tar.gz |
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
-rw-r--r-- | usr.sbin/sysinstall/media.c | 2 |
1 files changed, 1 insertions, 1 deletions
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) { |