From 0f299d7b4fcfb4334c1ccb629b4575fda8d1c7cf Mon Sep 17 00:00:00 2001 From: mlelstv Date: Tue, 15 Aug 2017 09:49:38 +0000 Subject: [PATCH] Support installing from a CD9660 formatted disk partition. --- distrib/miniroot/install.sub | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/distrib/miniroot/install.sub b/distrib/miniroot/install.sub index 6f6488507c3e..6bb0e405d61d 100644 --- a/distrib/miniroot/install.sub +++ b/distrib/miniroot/install.sub @@ -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" ;;