Changeset 33540 in vbox for trunk/src/VBox/Frontends/VBoxManage
- Timestamp:
- Oct 28, 2010 9:27:05 AM (14 years ago)
- svn:sync-xref-src-repo-rev:
- 67140
- Location:
- trunk/src/VBox/Frontends/VBoxManage
- Files:
-
- 7 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Frontends/VBoxManage/VBoxInternalManage.cpp
r33524 r33540 1867 1867 1868 1868 /** 1869 * Unloads the nec cessary driver.1869 * Unloads the necessary driver. 1870 1870 * 1871 1871 * @returns VBox status code … … 1884 1884 1885 1885 /** 1886 * Loads the nec cessary driver.1886 * Loads the necessary driver. 1887 1887 * 1888 1888 * @returns VBox status code -
trunk/src/VBox/Frontends/VBoxManage/VBoxManage.cpp
r33456 r33540 362 362 { "unregistervm", USAGE_UNREGISTERVM, handleUnregisterVM }, 363 363 { "createhd", USAGE_CREATEHD, handleCreateHardDisk }, 364 { "createvdi", USAGE_CREATEHD, handleCreateHardDisk }, /* backward compatib lity */364 { "createvdi", USAGE_CREATEHD, handleCreateHardDisk }, /* backward compatibility */ 365 365 { "modifyhd", USAGE_MODIFYHD, handleModifyHardDisk }, 366 { "modifyvdi", USAGE_MODIFYHD, handleModifyHardDisk }, /* backward compatib lity */366 { "modifyvdi", USAGE_MODIFYHD, handleModifyHardDisk }, /* backward compatibility */ 367 367 { "clonehd", USAGE_CLONEHD, handleCloneHardDisk }, 368 { "clonevdi", USAGE_CLONEHD, handleCloneHardDisk }, /* backward compatib lity */368 { "clonevdi", USAGE_CLONEHD, handleCloneHardDisk }, /* backward compatibility */ 369 369 { "addiscsidisk", USAGE_ADDISCSIDISK, handleAddiSCSIDisk }, 370 370 { "createvm", USAGE_CREATEVM, handleCreateVM }, … … 379 379 { "storagectl", USAGE_STORAGECONTROLLER, handleStorageController }, 380 380 { "showhdinfo", USAGE_SHOWHDINFO, handleShowHardDiskInfo }, 381 { "showvdiinfo", USAGE_SHOWHDINFO, handleShowHardDiskInfo }, /* backward compatib lity */381 { "showvdiinfo", USAGE_SHOWHDINFO, handleShowHardDiskInfo }, /* backward compatibility */ 382 382 { "getextradata", USAGE_GETEXTRADATA, handleGetExtraData }, 383 383 { "setextradata", USAGE_SETEXTRADATA, handleSetExtraData }, -
trunk/src/VBox/Frontends/VBoxManage/VBoxManageAppliance.cpp
r33417 r33540 944 944 ComPtr<IVirtualSystemDescription> pVSD; 945 945 CHECK_ERROR_BREAK(pMachine, Export(pAppliance, Bstr(pszAbsFilePath).raw(), pVSD.asOutParam())); 946 // Add additional info to the virt al system description if the user wants so946 // Add additional info to the virtual system description if the user wants so 947 947 ArgsMap *pmapArgs = NULL; 948 948 ArgsMapsMap::iterator itm = mapArgsMapsPerVsys.find(i); -
trunk/src/VBox/Frontends/VBoxManage/VBoxManageControlVM.cpp
r33408 r33540 47 47 * 48 48 * @returns Valid number on success. 49 * @returns 0 if invalid number. All neces ary bitching has been done.49 * @returns 0 if invalid number. All necessary bitching has been done. 50 50 * @param psz Pointer to the nic number. 51 51 */ -
trunk/src/VBox/Frontends/VBoxManage/VBoxManageDisk.cpp
r33524 r33540 164 164 { "--remember", 'r', RTGETOPT_REQ_NOTHING }, 165 165 { "-remember", 'r', RTGETOPT_REQ_NOTHING }, // deprecated 166 { "--register", 'r', RTGETOPT_REQ_NOTHING }, // deprecated ( inofficial)166 { "--register", 'r', RTGETOPT_REQ_NOTHING }, // deprecated (unofficial) 167 167 { "-register", 'r', RTGETOPT_REQ_NOTHING }, // deprecated 168 168 }; … … 1069 1069 * from the disk backends to construct the location properly. Also do 1070 1070 * not use slashes to separate the parts, as otherwise only the last 1071 * element co mtaining information will be shown. */1071 * element containing information will be shown. */ 1072 1072 if (lun.isEmpty() || lun == "0" || lun == "enc0") 1073 1073 { … … 1202 1202 DeviceType_HardDisk, 1203 1203 hardDisk.asOutParam()); 1204 /* no? well, then it's an unk wnown image */1204 /* no? well, then it's an unknown image */ 1205 1205 if (FAILED(rc)) 1206 1206 { -
trunk/src/VBox/Frontends/VBoxManage/VBoxManageMetrics.cpp
r33495 r33540 236 236 237 237 /** 238 * Met ics setup238 * Metrics setup 239 239 */ 240 240 static int handleMetricsSetup(int argc, char *argv[], -
trunk/src/VBox/Frontends/VBoxManage/VBoxManageStorageController.cpp
r33294 r33540 201 201 202 202 /* for sata controller check if the port count is big enough 203 * to accom odate the current port which is being assigned203 * to accommodate the current port which is being assigned 204 204 * else just increase the port count 205 205 */
Note:
See TracChangeset
for help on using the changeset viewer.