summaryrefslogtreecommitdiffstats
path: root/usr.sbin/sade/install.c
diff options
context:
space:
mode:
authornik <nik@FreeBSD.org>2001-06-27 17:48:43 +0000
committernik <nik@FreeBSD.org>2001-06-27 17:48:43 +0000
commit456c12319078f9994ab8335f771b4293d62495d2 (patch)
tree9f275b2ba5f739a1949690855874124be16747c4 /usr.sbin/sade/install.c
parenta5db0cb683fdcf8ff7fbae2a17d741d2445ed7a0 (diff)
downloadFreeBSD-src-456c12319078f9994ab8335f771b4293d62495d2.zip
FreeBSD-src-456c12319078f9994ab8335f771b4293d62495d2.tar.gz
Various changes to the messages so that they are now appropriate for both
CD and DVD releases of FreeBSD.
Diffstat (limited to 'usr.sbin/sade/install.c')
-rw-r--r--usr.sbin/sade/install.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/usr.sbin/sade/install.c b/usr.sbin/sade/install.c
index a30634e..d5820a6 100644
--- a/usr.sbin/sade/install.c
+++ b/usr.sbin/sade/install.c
@@ -269,11 +269,11 @@ installFixitCDROM(dialogMenuItem *self)
(void)rmdir("/mnt2");
while (1) {
- msgConfirm("Please insert a FreeBSD live filesystem CDROM and press return");
+ msgConfirm("Please insert a FreeBSD live filesystem CD/DVD and press return");
if (DITEM_STATUS(mediaSetCDROM(NULL)) != DITEM_SUCCESS || !mediaDevice || !mediaDevice->init(mediaDevice)) {
/* If we can't initialize it, it's probably not a FreeBSD CDROM so punt on it */
mediaClose();
- if (msgYesNo("Unable to mount the CDROM - do you want to try again?") != 0)
+ if (msgYesNo("Unable to mount the disc - do you want to try again?") != 0)
return DITEM_FAILURE;
}
else
@@ -284,7 +284,7 @@ installFixitCDROM(dialogMenuItem *self)
* a little kludge dance here..
*/
if (symlink("/dist", "/mnt2")) {
- msgConfirm("Unable to symlink /mnt2 to the CDROM mount point. Please report this\n"
+ msgConfirm("Unable to symlink /mnt2 to the disc mount point. Please report this\n"
"unexpected failure to freebsd-bugs@FreeBSD.org.");
return DITEM_FAILURE;
}
@@ -307,7 +307,7 @@ installFixitCDROM(dialogMenuItem *self)
Mkdir("/var/run");
if (vsystem("/mnt2/sbin/ldconfig -s /mnt2/usr/lib")) {
msgConfirm("Warning: ldconfig could not create the ld.so hints file.\n"
- "Dynamic executables from the CDROM likely won't work.");
+ "Dynamic executables from the disc likely won't work.");
}
}
@@ -320,7 +320,7 @@ installFixitCDROM(dialogMenuItem *self)
if (!file_readable("/usr/libexec/ld-elf.so.1")) {
if (symlink("/mnt2/usr/libexec/ld-elf.so.1", "/usr/libexec/ld-elf.so.1")) {
msgConfirm("Warning: could not create the symlink for ld-elf.so.1\n"
- "Dynamic executables from the CDROM likely won't work.");
+ "Dynamic executables from the disc likely won't work.");
}
}
/* optional nicety */
OpenPOWER on IntegriCloud