diff options
author | Jason Wright <jason@cvs.openbsd.org> | 1998-06-08 02:01:16 +0000 |
---|---|---|
committer | Jason Wright <jason@cvs.openbsd.org> | 1998-06-08 02:01:16 +0000 |
commit | dc67f9a10c2a1c5746eaa7cc5a94197011aad40e (patch) | |
tree | fb6743c84a7c70294f05dd623efca06fdc67870a /distrib | |
parent | a350459a002b2af0a122634752511bb5d3d3509b (diff) |
Move `md_copy_kernel' to earlier in the file to prevent warning
about missing kernel.
Diffstat (limited to 'distrib')
-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 b7ee3dc564d..5f8639217e0 100644 --- a/distrib/miniroot/install.sh +++ b/distrib/miniroot/install.sh @@ -1,5 +1,5 @@ #!/bin/sh -# $OpenBSD: install.sh,v 1.24 1998/06/02 02:22:18 millert Exp $ +# $OpenBSD: install.sh,v 1.25 1998/06/08 02:01:15 jason 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 @@ -508,6 +508,8 @@ while [ "X${resp}" = X"" ]; do fi done +md_copy_kernel + install_sets $THESETS # Copy in configuration information and make devices in target root. @@ -546,8 +548,6 @@ else fi -md_copy_kernel - md_installboot ${ROOTDISK} if [ ! -x /mnt/dev/MAKEDEV ]; then |