Support installing from a CD9660 formatted disk partition.

This commit is contained in:
mlelstv 2017-08-15 09:49:38 +00:00
parent 2872e1c3d8
commit 0f299d7b4f
1 changed files with 4 additions and 3 deletions

View File

@ -1,5 +1,5 @@
#!/bin/sh
# $NetBSD: install.sub,v 1.45 2008/04/30 13:10:48 martin Exp $
# $NetBSD: install.sub,v 1.46 2017/08/15 09:49:38 mlelstv Exp $
#
# Copyright (c) 1996 The NetBSD Foundation, Inc.
# All rights reserved.
@ -1045,11 +1045,12 @@ mount_a_disk() {
The following filesystem types are supported:
1) ffs
2) cd9660
__mount_a_disk_2
_md_fstype=`md_native_fstype`
_md_fsopts=`md_native_fsopts`
if [ ! -z "$_md_fstype" ]; then
echo " 2) $_md_fstype"
echo " 3) $_md_fstype"
else
_md_fstype="_undefined_"
fi
@ -1058,7 +1059,7 @@ __mount_a_disk_2
echo -n "Which filesystem type? [ffs] "
getresp "ffs"
case "$resp" in
ffs)
ffs|cd9660)
_fstype=$resp
_fsopts="ro"
;;