aboutsummaryrefslogtreecommitdiff
path: root/release/sysinstall/install.c
diff options
context:
space:
mode:
authorJordan K. Hubbard <jkh@FreeBSD.org>1997-07-23 15:13:18 +0000
committerJordan K. Hubbard <jkh@FreeBSD.org>1997-07-23 15:13:18 +0000
commit9325ae34de96fb34bdfdf96a54e3427979e48c4f (patch)
tree4bfc8896a3058ae2796802575864ef9b149efcf2 /release/sysinstall/install.c
parent1cc4d2e95008951a124dda287d599017e6bc02d7 (diff)
downloadsrc-9325ae34de96fb34bdfdf96a54e3427979e48c4f.tar.gz
src-9325ae34de96fb34bdfdf96a54e3427979e48c4f.zip
YAMF22 - /boot.foo fixups.
Also close PR#4151 by running newaliases (forgot to mention this in my RELENG_2_2 commit, but it's there).
Notes
Notes: svn path=/head/; revision=27630
Diffstat (limited to 'release/sysinstall/install.c')
-rw-r--r--release/sysinstall/install.c11
1 files changed, 10 insertions, 1 deletions
diff --git a/release/sysinstall/install.c b/release/sysinstall/install.c
index 718effba4a59..1d3554d8a31e 100644
--- a/release/sysinstall/install.c
+++ b/release/sysinstall/install.c
@@ -4,7 +4,7 @@
* This is probably the last program in the `sysinstall' line - the next
* generation being essentially a complete rewrite.
*
- * $Id: install.c,v 1.193 1997/07/16 11:45:48 jkh Exp $
+ * $Id: install.c,v 1.194 1997/07/16 15:21:57 jkh Exp $
*
* Copyright (c) 1995
* Jordan Hubbard. All rights reserved.
@@ -797,6 +797,15 @@ installFixup(dialogMenuItem *self)
Mkdir("/usr/compat");
vsystem("ln -s /usr/compat /compat");
+ /* BOGON #5: aliases database not build for bin */
+ vsystem("newaliases");
+
+ /* BOGON #6: deal with new boot files */
+ if (file_readable("/sys/i386/boot/biosboot/boot.help"))
+ vsystem("cp /sys/i386/boot/biosboot/boot.help /");
+ vsystem("touch /kernel.config");
+ vsystem("touch /boot.config");
+
/* Now run all the mtree stuff to fix things up */
vsystem("mtree -deU -f /etc/mtree/BSD.root.dist -p /");
vsystem("mtree -deU -f /etc/mtree/BSD.var.dist -p /var");