diff options
author | Todd C. Miller <millert@cvs.openbsd.org> | 1997-05-14 21:08:00 +0000 |
---|---|---|
committer | Todd C. Miller <millert@cvs.openbsd.org> | 1997-05-14 21:08:00 +0000 |
commit | 429683dbad318a6a8dc0a454cfd27b29422a22ed (patch) | |
tree | e712a29780fab6b582d440768577a350dee18093 /distrib/miniroot | |
parent | d24c1a9a9521fbd36f86091dd50d0a338f7795ef (diff) |
Now calls md_machine_arch() which needs to be added to everyone's
install.md.
Diffstat (limited to 'distrib/miniroot')
-rw-r--r-- | distrib/miniroot/install.sh | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/distrib/miniroot/install.sh b/distrib/miniroot/install.sh index 3eae7934730..fe82c8b5ea2 100644 --- a/distrib/miniroot/install.sh +++ b/distrib/miniroot/install.sh @@ -1,5 +1,5 @@ #!/bin/sh -# $OpenBSD: install.sh,v 1.9 1997/05/13 18:22:18 millert Exp $ +# $OpenBSD: install.sh,v 1.10 1997/05/14 21:07:59 millert Exp $ # $NetBSD: install.sh,v 1.5.2.8 1996/08/27 18:15:05 gwr Exp $ # # Copyright (c) 1996 The NetBSD Foundation, Inc. @@ -64,6 +64,7 @@ MODE="install" # md_native_fstype() - native filesystem type for disk installs # md_native_fsopts() - native filesystem options for disk installs # md_makerootwritable() - make root writable (at least /tmp) +# md_machine_arch() - get machine architecture # include machine dependent subroutines . install.md @@ -100,6 +101,9 @@ esac # XXX Work around vnode aliasing bug (thanks for the tip, Chris...) ls -l /dev > /dev/null 2>&1 +# Get the machine architecture +ARCH=`md_machine_arch` + # Deal with terminal issues md_set_term |