VirtualBox

Changeset 35085 in vbox


Ignore:
Timestamp:
Dec 14, 2010 2:09:12 PM (14 years ago)
Author:
vboxsync
Message:

VBoxManage: add support for readonly/multiattach media types

Location:
trunk/src/VBox/Frontends/VBoxManage
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/VBox/Frontends/VBoxManage/VBoxManageDisk.cpp

    r35037 r35085  
    109109    else if (!RTStrICmp(psz, "shareable"))
    110110        DiskType = MediumType_Shareable;
     111    else if (!RTStrICmp(psz, "readonly"))
     112        DiskType = MediumType_Readonly;
     113    else if (!RTStrICmp(psz, "multiattach"))
     114        DiskType = MediumType_MultiAttach;
    111115    else
    112116        rc = VERR_PARSE_ERROR;
     
    10061010                typeStr = "shareable";
    10071011                break;
     1012            case MediumType_Readonly:
     1013                typeStr = "readonly";
     1014                break;
     1015            case MediumType_MultiAttach:
     1016                typeStr = "multiattach";
     1017                break;
    10081018        }
    10091019        RTPrintf("Type:                 %s\n", typeStr);
  • trunk/src/VBox/Frontends/VBoxManage/VBoxManageHelp.cpp

    r35057 r35085  
    437437                     "                            [--medium none|emptydrive|\n"
    438438                     "                                      <uuid>|<filename>|host:<drive>|iscsi]\n"
    439                      "                            [--mtype normal|writethrough|immutable|shareable]\n"
     439                     "                            [--mtype normal|writethrough|immutable|shareable|\n"
     440                     "                                      readonly|multiattach]\n"
    440441                     "                            [--comment <text>]\n"
    441442                     "                            [--passthrough on|off]\n"
     
    491492        RTStrmPrintf(pStrm,
    492493                     "VBoxManage modifyhd         <uuid>|<filename>\n"
    493                      "                            [--type normal|writethrough|immutable|shareable]\n"
     494                     "                            [--type normal|writethrough|immutable|shareable|\n"
     495                     "                                      readonly|multiattach]\n"
    494496                     "                            [--autoreset on|off]\n"
    495497                     "                            [--compact]\n"
  • trunk/src/VBox/Frontends/VBoxManage/VBoxManageList.cpp

    r34244 r35085  
    142142            case MediumType_Readonly:
    143143                typeStr = "readonly";
     144                break;
     145            case MediumType_MultiAttach:
     146                typeStr = "multiattach";
    144147                break;
    145148        }
Note: See TracChangeset for help on using the changeset viewer.

© 2024 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette