diff options
author | Todd C. Miller <millert@cvs.openbsd.org> | 1998-10-28 17:51:15 +0000 |
---|---|---|
committer | Todd C. Miller <millert@cvs.openbsd.org> | 1998-10-28 17:51:15 +0000 |
commit | 5634baa1daa7963e129559d0445118d6a6cf3b32 (patch) | |
tree | 215c278b98c94dd8096c5509a52cd8b98fc9689f /distrib/miniroot/install.sh | |
parent | f5225655c5f492306254889b0c8a081d4fba7000 (diff) |
Move md_copy_kernel after install_sets and add check_kernel (which
should probably be used instead of md_copy_kernel once I am sure
nothing actually uses md_copy_kernel to copy the kernel any more).
Diffstat (limited to 'distrib/miniroot/install.sh')
-rw-r--r-- | distrib/miniroot/install.sh | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/distrib/miniroot/install.sh b/distrib/miniroot/install.sh index 6d76ece5eaa..4ad24a7ef49 100644 --- a/distrib/miniroot/install.sh +++ b/distrib/miniroot/install.sh @@ -1,5 +1,5 @@ #!/bin/sh -# $OpenBSD: install.sh,v 1.41 1998/10/13 21:23:30 deraadt Exp $ +# $OpenBSD: install.sh,v 1.42 1998/10/28 17:51:14 millert Exp $ # $NetBSD: install.sh,v 1.5.2.8 1996/08/27 18:15:05 gwr Exp $ # # Copyright (c) 1997,1998 Todd Miller, Theo de Raadt @@ -539,10 +539,10 @@ while [ "X${resp}" = X"" ]; do fi done -md_copy_kernel - install_sets $THESETS +md_copy_kernel + # Copy in configuration information and make devices in target root. if [ ! -d /mnt/etc -o ! -d /mnt/usr/share/zoneinfo -o ! -d /mnt/dev ]; then |