Changeset 25589 in vbox for trunk/src/VBox/Frontends/VBoxManage
- Timestamp:
- Dec 28, 2009 9:40:51 PM (15 years ago)
- svn:sync-xref-src-repo-rev:
- 56277
- Location:
- trunk/src/VBox/Frontends/VBoxManage
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Frontends/VBoxManage/VBoxManageHelp.cpp
r25108 r25589 395 395 RTPrintf("VBoxManage storagectl <uuid|vmname>\n" 396 396 " --name <name>\n" 397 " [--add <ide/sata/scsi/floppy >]\n"398 " [--controller <LsiLogic/BusLogic/IntelAhci/PIIX3/PIIX4/ICH6/I82078 >]\n"397 " [--add <ide/sata/scsi/floppy/sas>]\n" 398 " [--controller <LsiLogic/BusLogic/IntelAhci/PIIX3/PIIX4/ICH6/I82078/LsiLogicSas>]\n" 399 399 " [--sataideemulation<1-4> <1-30>]\n" 400 400 " [--sataportcount <1-30>]\n" -
trunk/src/VBox/Frontends/VBoxManage/VBoxManageStorageController.cpp
r25324 r25589 815 815 CHECK_ERROR(machine, AddStorageController(Bstr(pszCtl), StorageBus_Floppy, ctl.asOutParam())); 816 816 } 817 else if (!RTStrICmp(pszBusType, "sas")) 818 { 819 CHECK_ERROR(machine, AddStorageController(Bstr(pszCtl), StorageBus_SAS, ctl.asOutParam())); 820 } 817 821 else 818 822 { … … 858 862 { 859 863 CHECK_ERROR(ctl, COMSETTER(ControllerType)(StorageControllerType_I82078)); 864 } 865 if (!RTStrICmp(pszCtlType, "lsilogicsas")) 866 { 867 CHECK_ERROR(ctl, COMSETTER(ControllerType)(StorageControllerType_LsiLogicSas)); 860 868 } 861 869 else
Note:
See TracChangeset
for help on using the changeset viewer.