VirtualBox

Ignore:
Timestamp:
Oct 8, 2013 10:38:17 PM (11 years ago)
Author:
vboxsync
Message:

Main, Frontends: Make the port count of the SAS controller configurable and support up to 255 storage devices

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

Legend:

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

    r48966 r48985  
    553553                     "                            [--controller LSILogic|LSILogicSAS|BusLogic|\n"
    554554                     "                                          IntelAHCI|PIIX3|PIIX4|ICH6|I82078]\n"
    555                      "                            [--sataportcount <1-30>]\n"
     555                     "                            [--portcount <1-n>]\n"
    556556                     "                            [--hostiocache on|off]\n"
    557557                     "                            [--bootable on|off]\n"
  • trunk/src/VBox/Frontends/VBoxManage/VBoxManageStorageController.cpp

    r48983 r48985  
    907907    { "--add",              'a', RTGETOPT_REQ_STRING },
    908908    { "--controller",       'c', RTGETOPT_REQ_STRING },
    909     { "--sataportcount",    'p', RTGETOPT_REQ_UINT32 },
     909    { "--portcount",        'p', RTGETOPT_REQ_UINT32 },
    910910    { "--remove",           'r', RTGETOPT_REQ_NOTHING },
    911911    { "--hostiocache",      'i', RTGETOPT_REQ_STRING },
     
    924924    ULONG             satabootdev    = ~0U;
    925925    ULONG             sataidedev     = ~0U;
    926     ULONG             sataportcount  = ~0U;
     926    ULONG             portcount      = ~0U;
    927927    bool              fRemoveCtl     = false;
    928928    ComPtr<IMachine>  machine;
     
    968968            }
    969969
    970             case 'p':   // sataportcount
    971             {
    972                 sataportcount = ValueUnion.u32;
     970            case 'p':   // portcount
     971            {
     972                portcount = ValueUnion.u32;
    973973                break;
    974974            }
     
    11341134        }
    11351135
    1136         if (   (sataportcount != ~0U)
     1136        if (   (portcount != ~0U)
    11371137            && SUCCEEDED(rc))
    11381138        {
     
    11441144            if (SUCCEEDED(rc))
    11451145            {
    1146                 CHECK_ERROR(ctl, COMSETTER(PortCount)(sataportcount));
     1146                CHECK_ERROR(ctl, COMSETTER(PortCount)(portcount));
    11471147            }
    11481148            else
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