diff options
author | 2003-01-26 15:58:39 +0000 | |
---|---|---|
committer | 2003-01-26 15:58:39 +0000 | |
commit | 0cf6850b7d9fc0a73f1c0475d647839f46a26345 (patch) | |
tree | 51b3903b729181211aa8d901b5a9e1913eff90cc | |
parent | Last (?) big cleanup in distrib/miniroot this release cycle. (diff) | |
download | wireguard-openbsd-0cf6850b7d9fc0a73f1c0475d647839f46a26345.tar.xz wireguard-openbsd-0cf6850b7d9fc0a73f1c0475d647839f46a26345.zip |
Mount msdos filesystems with -s (shortnames) rather than -l
(longnames). This ensures the install sets are listed in lowercase and
are thus visible to the install/upgrade scripts.
Installing/upgrading from sets on msdos partitions should now work
(again?).
Problem noticed by Michael Lucas.
deraadt@ ok
-rw-r--r-- | distrib/i386/common/install.md | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/distrib/i386/common/install.md b/distrib/i386/common/install.md index cff84f8008a..e59567e5f5f 100644 --- a/distrib/i386/common/install.md +++ b/distrib/i386/common/install.md @@ -1,4 +1,4 @@ -# $OpenBSD: install.md,v 1.16 2002/12/14 15:33:34 krw Exp $ +# $OpenBSD: install.md,v 1.17 2003/01/26 15:58:39 krw Exp $ # # # Copyright (c) 1996 The NetBSD Foundation, Inc. @@ -40,7 +40,7 @@ # MDFSTYPE=msdos -MDFSOPTS=-l +MDFSOPTS=-s MDXAPERTURE=2 ARCH=ARCH |