Changeset 23802 in vbox for trunk/src/VBox/Frontends/VBoxManage
- Timestamp:
- Oct 15, 2009 3:17:58 PM (16 years ago)
- svn:sync-xref-src-repo-rev:
- 53544
- Location:
- trunk/src/VBox/Frontends/VBoxManage
- Files:
-
- 1 added
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Frontends/VBoxManage/Makefile.kmk
r22866 r23802 65 65 VBoxManageList.cpp \ 66 66 VBoxManageDisk.cpp \ 67 VBoxManageStorageController.cpp \ 67 68 VBoxManageSnapshot.cpp \ 68 69 VBoxManageUSB.cpp \ -
trunk/src/VBox/Frontends/VBoxManage/VBoxManage.cpp
r23801 r23802 2031 2031 { "closemedium", handleCloseMedium }, 2032 2032 { "unregisterimage", handleCloseMedium }, /* backward compatiblity */ 2033 { "attachdisk", handleAttachDisk }, 2034 { "storagectl", handleStorageController }, 2033 2035 { "showhdinfo", handleShowHardDiskInfo }, 2034 2036 { "showvdiinfo", handleShowHardDiskInfo }, /* backward compatiblity */ -
trunk/src/VBox/Frontends/VBoxManage/VBoxManage.h
r23569 r23802 92 92 #define USAGE_DHCPSERVER RT_BIT_64(47) 93 93 #define USAGE_DUMPHDINFO RT_BIT_64(48) 94 #define USAGE_ATTACHDISK RT_BIT_64(49) 95 #define USAGE_STORAGECONTROLLER RT_BIT_64(50) 94 96 #define USAGE_ALL (~(uint64_t)0) 95 97 /** @} */ … … 190 192 int handleCloseMedium(HandlerArg *a); 191 193 194 /* VBoxManageStorageController.cpp */ 195 int handleAttachDisk(HandlerArg *a); 196 int handleStorageController(HandlerArg *a); 197 192 198 // VBoxManageImport.cpp 193 199 int handleImportAppliance(HandlerArg *a); -
trunk/src/VBox/Frontends/VBoxManage/VBoxManageHelp.cpp
r23801 r23802 366 366 } 367 367 368 if (u64Cmd & USAGE_ATTACHDISK) 369 { 370 RTPrintf("VBoxManage attachdisk <uuid|vmname>\n" 371 " --type <dvd|hdd|floppy>\n" 372 " --file <null|none|uuid|filename|host:<drive>>\n" 373 " --controller <name>\n" 374 " --port <number>\n" 375 " --device <number>\n" 376 "\n"); 377 } 378 379 if (u64Cmd & USAGE_STORAGECONTROLLER) 380 { 381 RTPrintf("VBoxManage storagectl <uuid|vmname>\n" 382 " --storagectl <name>\n" 383 " [--add <ide/sata/scsi/floppy>]\n" 384 " [--type <LsiLogic/BusLogic/IntelAhci/PIIX3/PIIX4/ICH6/I82078>]\n" 385 " [--passthrough <on|off> --port <number> --device <number>]\n" 386 " [--sataideemulation<1-4> <1-30>]\n" 387 " [--sataportcount <1-30>]\n" 388 " [--remove]\n" 389 "\n"); 390 } 391 368 392 if (u64Cmd & USAGE_SHOWHDINFO) 369 393 {
Note:
See TracChangeset
for help on using the changeset viewer.