Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[src/trunk]: src/distrib/miniroot Support installing from a CD9660 formatted ...



details:   https://anonhg.NetBSD.org/src/rev/77692187cbcf
branches:  trunk
changeset: 826108:77692187cbcf
user:      mlelstv <mlelstv%NetBSD.org@localhost>
date:      Tue Aug 15 09:49:38 2017 +0000

description:
Support installing from a CD9660 formatted disk partition.

diffstat:

 distrib/miniroot/install.sub |  7 ++++---
 1 files changed, 4 insertions(+), 3 deletions(-)

diffs (33 lines):

diff -r d6bd164bfc1b -r 77692187cbcf distrib/miniroot/install.sub
--- a/distrib/miniroot/install.sub      Tue Aug 15 09:26:56 2017 +0000
+++ b/distrib/miniroot/install.sub      Tue Aug 15 09:49:38 2017 +0000
@@ -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 @@
 
 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 @@
                echo -n "Which filesystem type? [ffs] "
                getresp "ffs"
                case "$resp" in
-                       ffs)
+                       ffs|cd9660)
                                _fstype=$resp
                                _fsopts="ro"
                                ;;



Home | Main Index | Thread Index | Old Index