summaryrefslogtreecommitdiffstats
path: root/release/sysinstall/menus.c
diff options
context:
space:
mode:
authorjkh <jkh@FreeBSD.org>1997-01-24 19:24:51 +0000
committerjkh <jkh@FreeBSD.org>1997-01-24 19:24:51 +0000
commitea4f82e353a9946587bb951abdf055807de19e85 (patch)
treedd1c8a0c2facff37bca8e7cce5cbf8da441b17ba /release/sysinstall/menus.c
parent04cbebd0add1fa8f9192b002813594194b3b35e8 (diff)
downloadFreeBSD-src-ea4f82e353a9946587bb951abdf055807de19e85.zip
FreeBSD-src-ea4f82e353a9946587bb951abdf055807de19e85.tar.gz
OK, I've got two ideas to file in the "really seemed like a good idea
at the time, but on further reflection..." bucket with these changes. 1. Checking the media before frobbing the disks was a fine idea, and I wish it could have worked, but that leads to a rather difficult situation when you need to mount the media someplace and you're about to: a) Chroot away from your present root. b) Newfs the root to be. You're basically screwed since there's no place to stick the mount point where it will be found following the newfs/chroot (and eliminating the chroot in favor of just using the "root bias" feature would work great for the distributions but not the pkg_add calls done by the package installer). 2. Automatic timeout handling. I don't know why, but alarm() frequently returns no residual even when the alarm didn't go off, which defies the man page but hey, since when was that so unusual? Take out timeouts but retain the code which temporarily replaces the SIGINT handler in favor of a more media-specific handler. This way, at least, if it's hanging you can at least whap it. I think the timeout code would have been losing over *really slow* links anyway, so it's probably best that it go. This should fix NFS, tape & CDROM installs again (serves me right for getting complacent and using just the FTP installs in my testing).
Diffstat (limited to 'release/sysinstall/menus.c')
-rw-r--r--release/sysinstall/menus.c8
1 files changed, 6 insertions, 2 deletions
diff --git a/release/sysinstall/menus.c b/release/sysinstall/menus.c
index 64938ba..4d85fae 100644
--- a/release/sysinstall/menus.c
+++ b/release/sysinstall/menus.c
@@ -330,10 +330,14 @@ whichMouse(dialogMenuItem *self)
{
char buf[BUFSIZ];
- if (!file_readable("/dev/mouse"))
+ if (!file_readable("/dev/mouse")) {
+ msgDebug("No /dev/mouse device!\n");
return FALSE;
- if (readlink("/dev/mouse", buf, sizeof buf) == -1)
+ }
+ if (readlink("/dev/mouse", buf, sizeof buf) == -1) {
+ msgDebug("Can't read /dev/mouse symlink!\n");
return FALSE;
+ }
if (isDebug)
msgDebug("The evil link value is `%s'\n", buf);
if (!strcmp(self->prompt, "COM1"))
OpenPOWER on IntegriCloud