- Timestamp:
- Sep 24, 2007 5:08:07 PM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Frontends/VBoxBFE/VBoxBFE.cpp
r4983 r5014 1 /* $Id$ */ 1 2 /** @file 2 * 3 * VBox frontends: Basic Frontend (BFE): 4 * VBoxBFE main routines 3 * Basic Frontend (BFE): VBoxBFE main routines. 5 4 * 6 5 * VBoxBFE is a limited frontend that sits directly on the Virtual Machine … … 242 241 } 243 242 243 244 244 /** 245 245 * Generates a new unique MAC address based on our vendor ID and … … 268 268 LogFlowFunc(("generated MAC: '%s'\n", pszAddress)); 269 269 return VINF_SUCCESS; 270 } 270 } 271 271 272 272 273 /** … … 642 643 || argv[curArg][3] >= '8' 643 644 || argv[curArg][4]) 644 return SyntaxError("bad interface name '%s' specified with '%s'. Expected 'lan0', 'lan1' and similar.\n", 645 return SyntaxError("bad interface name '%s' specified with '%s'. Expected 'lan0', 'lan1' and similar.\n", 645 646 argv[curArg], pszArg); 646 647 g_aNetDevs[i].iConnectTo = argv[curArg][3] - '0'; … … 815 816 #ifdef RT_OS_L4 816 817 /* The L4 console provides (currently) a fixed resolution. */ 817 if (g_u32VRamSizeMB * _1M >= gFramebuffer->getHostXres() 818 if (g_u32VRamSizeMB * _1M >= gFramebuffer->getHostXres() 818 819 * gFramebuffer->getHostYres() 819 820 * (gDisplay->getBitsPerPixel() / 8)) … … 987 988 va_list va2; 988 989 va_copy(va2, args); /* Have to make a copy here or GCC will break. */ 989 RTStrPrintf(szError, sizeof(szError), 990 RTStrPrintf(szError, sizeof(szError), 990 991 "%N!\nVBox status code: %d (%Vrc)", pszFormat, &va2, rc, rc); 991 992 RTPrintf("%s\n", szError); … … 1660 1661 #elif defined(RT_OS_OS2) 1661 1662 /* 1662 * The TAP driver does all the opening and setting up, 1663 * The TAP driver does all the opening and setting up, 1663 1664 * as it was originally was ment to be (stupid fork() problems). 1664 1665 */ … … 1666 1667 if (g_aNetDevs[ulInstance].fHaveConnectTo) 1667 1668 { 1668 rc = CFGMR3InsertInteger(pCfg, "ConnectTo", g_aNetDevs[ulInstance].iConnectTo); 1669 rc = CFGMR3InsertInteger(pCfg, "ConnectTo", g_aNetDevs[ulInstance].iConnectTo); 1669 1670 UPDATE_RC(); 1670 1671 } … … 1765 1766 return rc; 1766 1767 } 1768
Note:
See TracChangeset
for help on using the changeset viewer.