Changeset 23249 in vbox for trunk/src/VBox/Frontends/VBoxManage
- Timestamp:
- Sep 23, 2009 9:57:11 AM (16 years ago)
- svn:sync-xref-src-repo-rev:
- 52725
- Location:
- trunk/src/VBox/Frontends/VBoxManage
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Frontends/VBoxManage/VBoxManage.cpp
r23223 r23249 1195 1195 else 1196 1196 uuid = Guid().toString(); 1197 CHECK_ERROR(machine, MountMedium(Bstr("IDE "), 1, 0, uuid));1197 CHECK_ERROR(machine, MountMedium(Bstr("IDE Controller"), 1, 0, uuid)); 1198 1198 } 1199 1199 else if (!strcmp(a->argv[1], "floppyattach")) … … 1250 1250 } 1251 1251 floppyMedium->COMGETTER(Id)(uuid.asOutParam()); 1252 CHECK_ERROR(machine, MountMedium(Bstr("F D"), 0, 0, uuid));1252 CHECK_ERROR(machine, MountMedium(Bstr("Floppy Controller"), 0, 0, uuid)); 1253 1253 } 1254 1254 #ifdef VBOX_WITH_MEM_BALLOONING -
trunk/src/VBox/Frontends/VBoxManage/VBoxManageInfo.cpp
r23223 r23249 449 449 bool fFloppyEnabled = false; 450 450 451 rc = machine->GetStorageControllerByName(Bstr("F D"), FloppyCtl.asOutParam());451 rc = machine->GetStorageControllerByName(Bstr("Floppy Controller"), FloppyCtl.asOutParam()); 452 452 if (SUCCEEDED(rc)) 453 453 fFloppyEnabled = true; … … 470 470 for (ULONG i = 0; i < cFloppyPorts; ++ i) 471 471 { 472 rc = machine->GetMedium(Bstr("F D"), 0, i, floppyMedium.asOutParam());472 rc = machine->GetMedium(Bstr("Floppy Controller"), 0, i, floppyMedium.asOutParam()); 473 473 if (SUCCEEDED(rc) && floppyMedium) 474 474 { … … 548 548 ComPtr<IStorageController> ideController; 549 549 550 rc = machine->GetStorageControllerByName(Bstr("IDE "), ideController.asOutParam());550 rc = machine->GetStorageControllerByName(Bstr("IDE Controller"), ideController.asOutParam()); 551 551 if (SUCCEEDED(rc) && ideController) 552 552 { … … 578 578 ComPtr<IMedium> hardDisk; 579 579 Bstr filePath; 580 rc = machine->GetMedium(Bstr("IDE "), 0, 0, hardDisk.asOutParam());580 rc = machine->GetMedium(Bstr("IDE Controller"), 0, 0, hardDisk.asOutParam()); 581 581 if (SUCCEEDED(rc) && hardDisk) 582 582 { … … 596 596 RTPrintf("hda=\"none\"\n"); 597 597 } 598 rc = machine->GetMedium(Bstr("IDE "), 0, 1, hardDisk.asOutParam());598 rc = machine->GetMedium(Bstr("IDE Controller"), 0, 1, hardDisk.asOutParam()); 599 599 if (SUCCEEDED(rc) && hardDisk) 600 600 { … … 614 614 RTPrintf("hdb=\"none\"\n"); 615 615 } 616 rc = machine->GetMedium(Bstr("IDE "), 1, 1, hardDisk.asOutParam());616 rc = machine->GetMedium(Bstr("IDE Controller"), 1, 1, hardDisk.asOutParam()); 617 617 if (SUCCEEDED(rc) && hardDisk) 618 618 { … … 633 633 } 634 634 ComPtr<IMedium> dvdMedium; 635 rc = machine->GetMedium(Bstr("IDE "), 1, 0, dvdMedium.asOutParam());635 rc = machine->GetMedium(Bstr("IDE Controller"), 1, 0, dvdMedium.asOutParam()); 636 636 if (SUCCEEDED(rc) && dvdMedium) 637 637 { … … 648 648 BOOL fPassthrough; 649 649 ComPtr<IMediumAttachment> dvdAttachment; 650 machine->GetMediumAttachment(Bstr("IDE "), 1, 0, dvdAttachment.asOutParam());650 machine->GetMediumAttachment(Bstr("IDE Controller"), 1, 0, dvdAttachment.asOutParam()); 651 651 dvdAttachment->COMGETTER(Passthrough)(&fPassthrough); 652 652 if (details == VMINFO_MACHINEREADABLE) -
trunk/src/VBox/Frontends/VBoxManage/VBoxManageModifyVM.cpp
r23223 r23249 1174 1174 if (!strcmp(hdds[0], "none")) 1175 1175 { 1176 machine->DetachDevice(Bstr("IDE "), 0, 0);1176 machine->DetachDevice(Bstr("IDE Controller"), 0, 0); 1177 1177 } 1178 1178 else … … 1195 1195 { 1196 1196 hardDisk->COMGETTER(Id)(uuid.asOutParam()); 1197 CHECK_ERROR(machine, AttachDevice(Bstr("IDE "), 0, 0, DeviceType_HardDisk, uuid));1197 CHECK_ERROR(machine, AttachDevice(Bstr("IDE Controller"), 0, 0, DeviceType_HardDisk, uuid)); 1198 1198 } 1199 1199 else … … 1207 1207 if (!strcmp(hdds[1], "none")) 1208 1208 { 1209 machine->DetachDevice(Bstr("IDE "), 0, 1);1209 machine->DetachDevice(Bstr("IDE Controller"), 0, 1); 1210 1210 } 1211 1211 else … … 1228 1228 { 1229 1229 hardDisk->COMGETTER(Id)(uuid.asOutParam()); 1230 CHECK_ERROR(machine, AttachDevice(Bstr("IDE "), 0, 1, DeviceType_HardDisk, uuid));1230 CHECK_ERROR(machine, AttachDevice(Bstr("IDE Controller"), 0, 1, DeviceType_HardDisk, uuid)); 1231 1231 } 1232 1232 else … … 1240 1240 if (!strcmp(hdds[2], "none")) 1241 1241 { 1242 machine->DetachDevice(Bstr("IDE "), 1, 1);1242 machine->DetachDevice(Bstr("IDE Controller"), 1, 1); 1243 1243 } 1244 1244 else … … 1261 1261 { 1262 1262 hardDisk->COMGETTER(Id)(uuid.asOutParam()); 1263 CHECK_ERROR(machine, AttachDevice(Bstr("IDE "), 1, 1, DeviceType_HardDisk, uuid));1263 CHECK_ERROR(machine, AttachDevice(Bstr("IDE Controller"), 1, 1, DeviceType_HardDisk, uuid)); 1264 1264 } 1265 1265 else … … 1330 1330 * storage controllers. */ 1331 1331 dvdMedium->COMGETTER(Id)(uuid.asOutParam()); 1332 CHECK_ERROR(machine, MountMedium(Bstr("IDE "), 1, 0, uuid));1332 CHECK_ERROR(machine, MountMedium(Bstr("IDE Controller"), 1, 0, uuid)); 1333 1333 } 1334 1334 if (dvdpassthrough) 1335 1335 { 1336 1336 ComPtr<IMediumAttachment> dvdAttachment; 1337 machine->GetMediumAttachment(Bstr("IDE "), 1, 0, dvdAttachment.asOutParam());1337 machine->GetMediumAttachment(Bstr("IDE Controller"), 1, 0, dvdAttachment.asOutParam()); 1338 1338 ASSERT(dvdAttachment); 1339 1339 … … 1343 1343 { 1344 1344 ComPtr<IStorageController> storageController; 1345 CHECK_ERROR(machine, GetStorageControllerByName(Bstr("IDE "), storageController.asOutParam()));1345 CHECK_ERROR(machine, GetStorageControllerByName(Bstr("IDE Controller"), storageController.asOutParam())); 1346 1346 1347 1347 if (!RTStrICmp(idecontroller, "PIIX3")) … … 1368 1368 ComPtr<IMedium> floppyMedium; 1369 1369 ComPtr<IMediumAttachment> floppyAttachment; 1370 machine->GetMediumAttachment(Bstr("F D"), 0, 0, floppyAttachment.asOutParam());1370 machine->GetMediumAttachment(Bstr("Floppy Controller"), 0, 0, floppyAttachment.asOutParam()); 1371 1371 1372 1372 /* disable? */ … … 1375 1375 /* disable the controller */ 1376 1376 if (floppyAttachment) 1377 CHECK_ERROR(machine, DetachDevice(Bstr("F D"), 0, 0));1377 CHECK_ERROR(machine, DetachDevice(Bstr("Floppy Controller"), 0, 0)); 1378 1378 } 1379 1379 else … … 1381 1381 /* enable the controller */ 1382 1382 if (!floppyAttachment) 1383 CHECK_ERROR(machine, AttachDevice(Bstr("F D"), 0, 0, DeviceType_Floppy, NULL));1383 CHECK_ERROR(machine, AttachDevice(Bstr("Floppy Controller"), 0, 0, DeviceType_Floppy, NULL)); 1384 1384 1385 1385 /* unmount? */ … … 1425 1425 } 1426 1426 floppyMedium->COMGETTER(Id)(uuid.asOutParam()); 1427 CHECK_ERROR(machine, MountMedium(Bstr("F D"), 0, 0, uuid));1427 CHECK_ERROR(machine, MountMedium(Bstr("Floppy Controller"), 0, 0, uuid)); 1428 1428 } 1429 1429 }
Note:
See TracChangeset
for help on using the changeset viewer.