Changeset 57525 in vbox for trunk/src/VBox
- Timestamp:
- Aug 25, 2015 10:20:37 AM (9 years ago)
- Location:
- trunk/src/VBox/Frontends/VBoxManage
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Frontends/VBoxManage/VBoxManageHelp.cpp
r57358 r57525 1082 1082 "%s storagectl %s <uuid|vmname>\n" 1083 1083 " --name <name>\n" 1084 " [--add ide|sata|scsi|floppy|sas ]\n"1084 " [--add ide|sata|scsi|floppy|sas|pcie]\n" 1085 1085 " [--controller LSILogic|LSILogicSAS|BusLogic|\n" 1086 " IntelAHCI|PIIX3|PIIX4|ICH6|I82078 ]\n"1086 " IntelAHCI|PIIX3|PIIX4|ICH6|I82078|NVMe]\n" 1087 1087 " [--portcount <1-n>]\n" 1088 1088 " [--hostiocache on|off]\n" -
trunk/src/VBox/Frontends/VBoxManage/VBoxManageStorageController.cpp
r57358 r57525 1086 1086 ctl.asOutParam())); 1087 1087 } 1088 else if (!RTStrICmp(pszBusType, "pcie")) 1089 { 1090 CHECK_ERROR(machine, AddStorageController(Bstr(pszCtl).raw(), 1091 StorageBus_PCIe, 1092 ctl.asOutParam())); 1093 } 1088 1094 else 1089 1095 { … … 1138 1144 { 1139 1145 CHECK_ERROR(ctl, COMSETTER(ControllerType)(StorageControllerType_USB)); 1146 } 1147 else if (!RTStrICmp(pszCtlType, "nvme")) 1148 { 1149 CHECK_ERROR(ctl, COMSETTER(ControllerType)(StorageControllerType_NVMe)); 1140 1150 } 1141 1151 else
Note:
See TracChangeset
for help on using the changeset viewer.