Changeset 19624 in vbox for trunk/src/VBox/Frontends/VBoxManage
- Timestamp:
- May 12, 2009 1:49:50 PM (16 years ago)
- svn:sync-xref-src-repo-rev:
- 47206
- Location:
- trunk/src/VBox/Frontends/VBoxManage
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Frontends/VBoxManage/VBoxManageHelp.cpp
r19377 r19624 181 181 " server <pipe>|\n" 182 182 " client <pipe>|\n" 183 " file <file>|\n" 183 184 " <devicename>]\n" 184 185 #ifdef VBOX_WITH_MEM_BALLOONING -
trunk/src/VBox/Frontends/VBoxManage/VBoxManageInfo.cpp
r19622 r19624 849 849 RTPrintf(", disconnected\n"); 850 850 break; 851 case PortMode_RawFile: 852 if (details == VMINFO_MACHINEREADABLE) 853 RTPrintf("uartmode%d=\"%lS\"\n", currentUART + 1, 854 path.raw()); 855 else 856 RTPrintf(", attached to raw file '%lS'\n", 857 path.raw()); 858 break; 851 859 case PortMode_HostPipe: 852 860 if (details == VMINFO_MACHINEREADABLE) -
trunk/src/VBox/Frontends/VBoxManage/VBoxManageModifyVM.cpp
r19377 r19624 1732 1732 CHECK_ERROR_RET(uart, COMSETTER(Server) (FALSE), 1); 1733 1733 } 1734 else if (!strcmp(uarts_mode[n], "file")) 1735 { 1736 CHECK_ERROR_RET(uart, COMSETTER(HostMode) (PortMode_RawFile), 1); 1737 } 1734 1738 else 1735 1739 {
Note:
See TracChangeset
for help on using the changeset viewer.