diff options
| author | Jordan K. Hubbard <jkh@FreeBSD.org> | 1996-05-16 13:42:58 +0000 |
|---|---|---|
| committer | Jordan K. Hubbard <jkh@FreeBSD.org> | 1996-05-16 13:42:58 +0000 |
| commit | a59bf652cb394b3436c8eb8c97034c3ba7671187 (patch) | |
| tree | 458ee83b035843b31e2156f25be013dfd369009b | |
| parent | 7635313216384288dfa7885f3fca8259eca7d2e5 (diff) | |
Notes
| -rw-r--r-- | release/sysinstall/dist.c | 6 | ||||
| -rw-r--r-- | release/sysinstall/help/install.hlp | 10 | ||||
| -rw-r--r-- | release/sysinstall/menus.c | 2 |
3 files changed, 10 insertions, 8 deletions
diff --git a/release/sysinstall/dist.c b/release/sysinstall/dist.c index 235f57004c80..86164d086328 100644 --- a/release/sysinstall/dist.c +++ b/release/sysinstall/dist.c @@ -4,7 +4,7 @@ * This is probably the last program in the `sysinstall' line - the next * generation being essentially a complete rewrite. * - * $Id: dist.c,v 1.50 1996/05/01 08:50:00 jkh Exp $ + * $Id: dist.c,v 1.52 1996/05/16 13:39:06 jkh Exp $ * * Copyright (c) 1995 * Jordan Hubbard. All rights reserved. @@ -183,7 +183,7 @@ int distSetXDeveloper(dialogMenuItem *self) { distReset(NULL); - Dists = _DIST_DEVELOPER | DIST_XF86; + Dists = _DIST_DEVELOPER; SrcDists = DIST_SRC_ALL; XF86Dists = DIST_XF86_BIN | DIST_XF86_LIB | DIST_XF86_PROG | DIST_XF86_MAN | DIST_XF86_SERVER | DIST_XF86_FONTS; XF86ServerDists = DIST_XF86_SERVER_SVGA; @@ -283,7 +283,7 @@ distSetXF86(dialogMenuItem *self) if (XF86FontDists) XF86Dists |= DIST_XF86_FONTS; if (XF86Dists) - Dists |= (DIST_XF86 | DIST_COMPAT21); /* XXX for now we need compat21 for X to work XXX */ + Dists |= DIST_XF86; msgDebug("SetXF86 Masks: Server: %0x, Fonts: %0x, XDists: %0x, Dists: %0x\n", XF86ServerDists, XF86FontDists, XF86Dists, Dists); } diff --git a/release/sysinstall/help/install.hlp b/release/sysinstall/help/install.hlp index 1badeae832a9..bbb666158d98 100644 --- a/release/sysinstall/help/install.hlp +++ b/release/sysinstall/help/install.hlp @@ -180,12 +180,14 @@ which is why I'm taking such special care to mention it here! If you're creating the floppies from another FreeBSD machine, a format is still not a bad idea though you don't need to put a DOS filesystem on each floppy. You can use the `disklabel' and `newfs' commands to -put a UFS filesystem on them instead, like so: +put a UFS filesystem on a floppy, as the following sequence of commands +(for a 3.5" 1.44MB floppy disk) illustrates: - disklabel -w -r fd0 floppy3 (use floppy5 for 1.2MB disks) - newfs /dev/rfd0 + fdformat -f 1440 fd0.1440 + disklabel -w -r fd0.1440 floppy3 + newfs -t 2 -u 18 -l 1 -i 65536 /dev/rfd0 -Then you can mount and write to them like any other file system. +(Use "fd0.1200" and "floppy5" for 5.25" 1.2MB disks). After you've formatted the floppies for DOS or UFS, you'll need to copy the files onto them. The distribution files are split into diff --git a/release/sysinstall/menus.c b/release/sysinstall/menus.c index ee6a3abf2b62..75ab5ef19489 100644 --- a/release/sysinstall/menus.c +++ b/release/sysinstall/menus.c @@ -4,7 +4,7 @@ * This is probably the last program in the `sysinstall' line - the next * generation being essentially a complete rewrite. * - * $Id: menus.c,v 1.61 1996/05/16 11:47:38 jkh Exp $ + * $Id: menus.c,v 1.63 1996/05/16 13:39:08 jkh Exp $ * * Copyright (c) 1995 * Jordan Hubbard. All rights reserved. |
