summaryrefslogtreecommitdiff
path: root/distrib
diff options
context:
space:
mode:
authorTheo de Raadt <deraadt@cvs.openbsd.org>2000-12-10 02:40:40 +0000
committerTheo de Raadt <deraadt@cvs.openbsd.org>2000-12-10 02:40:40 +0000
commit6d157dd7f645ccf8e5ae24701882840b69294854 (patch)
tree199fe5af1b0ee27dcc85eed7fceff91ec3dac36e /distrib
parent733c3cfcb0d998fdea836f72a151734635995be7 (diff)
ignore filesystems marked "xx"; os@atina.ar
Diffstat (limited to 'distrib')
-rw-r--r--distrib/miniroot/install.sub7
1 files changed, 6 insertions, 1 deletions
diff --git a/distrib/miniroot/install.sub b/distrib/miniroot/install.sub
index bb7730d6ef4..865726f95e5 100644
--- a/distrib/miniroot/install.sub
+++ b/distrib/miniroot/install.sub
@@ -1,5 +1,5 @@
#!/bin/sh
-# $OpenBSD: install.sub,v 1.159 2000/11/20 13:11:16 deraadt Exp $
+# $OpenBSD: install.sub,v 1.160 2000/12/10 02:40:39 deraadt Exp $
# $NetBSD: install.sub,v 1.5.2.8 1996/09/02 23:25:02 pk Exp $
#
# Copyright (c) 1997,1998 Todd Miller, Theo de Raadt
@@ -1986,6 +1986,11 @@ _fstab_shadow=$2
\#*) continue;;
*) ;;
esac
+ # ...and filesystems with mounting options ``xx''
+ case "$_rest" in
+ xx*) continue;;
+ *) ;;
+ esac
# and some filesystem types (like there are swap,kernfs,...)
case "$_fstype" in
ffs|ufs|nfs) ;;