Changeset 20289 in vbox
- Timestamp:
- Jun 4, 2009 2:44:43 PM (16 years ago)
- Location:
- trunk/src/VBox/Frontends/VBoxManage
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Frontends/VBoxManage/VBoxInternalManage.cpp
r19239 r20289 957 957 { 958 958 RTPrintf("File '%s' is no block device\n", rawdisk.raw()); 959 vrc = VERR_INVALID_PARAMETER; 960 goto out; 959 vrc = RTFileGetSize(RawFile, &cbSize); 960 //vrc = VERR_INVALID_PARAMETER; 961 //goto out; 961 962 } 962 963 #elif defined(RT_OS_DARWIN) -
trunk/src/VBox/Frontends/VBoxManage/VBoxManageInfo.cpp
r20252 r20289 267 267 { 268 268 if (details == VMINFO_MACHINEREADABLE) 269 RTPrintf("boot device-%d=\"floppy\"\n", i);269 RTPrintf("boot%d=\"floppy\"\n", i); 270 270 else 271 271 RTPrintf("Boot Device (%d): Floppy\n", i); … … 274 274 { 275 275 if (details == VMINFO_MACHINEREADABLE) 276 RTPrintf("boot device-%d=\"dvd\"\n", i);276 RTPrintf("boot%d=\"dvd\"\n", i); 277 277 else 278 278 RTPrintf("Boot Device (%d): DVD\n", i); … … 281 281 { 282 282 if (details == VMINFO_MACHINEREADABLE) 283 RTPrintf("boot device-%d=\"harddisk\"\n", i);283 RTPrintf("boot%d=\"disk\"\n", i); 284 284 else 285 285 RTPrintf("Boot Device (%d): HardDisk\n", i); … … 288 288 { 289 289 if (details == VMINFO_MACHINEREADABLE) 290 RTPrintf("boot device-%d=\"network\"\n", i);290 RTPrintf("boot%d=\"net\"\n", i); 291 291 else 292 292 RTPrintf("Boot Device (%d): Network\n", i); … … 295 295 { 296 296 if (details == VMINFO_MACHINEREADABLE) 297 RTPrintf("boot device-%d=\"usb\"\n", i);297 RTPrintf("boot%d=\"usb\"\n", i); 298 298 else 299 299 RTPrintf("Boot Device (%d): USB\n", i); … … 302 302 { 303 303 if (details == VMINFO_MACHINEREADABLE) 304 RTPrintf("boot device-%d=\"sharedfolder\"\n", i);304 RTPrintf("boot%d=\"sharedfolder\"\n", i); 305 305 else 306 306 RTPrintf("Boot Device (%d): Shared Folder\n", i); … … 309 309 { 310 310 if (details == VMINFO_MACHINEREADABLE) 311 RTPrintf("boot device-%d=\"null\"\n", i);311 RTPrintf("boot%d=\"none\"\n", i); 312 312 else 313 313 RTPrintf("Boot Device (%d): Not Assigned\n", i);
Note:
See TracChangeset
for help on using the changeset viewer.