Changeset 4183 in vbox for trunk/src/VBox/Frontends
- Timestamp:
- Aug 16, 2007 6:09:19 PM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Frontends/VBoxBFE/VBoxBFE.cpp
r4071 r4183 294 294 " -[no]ioapic Enable or disable the IO-APIC (default: disabled)\n" 295 295 " -audio Enable audio\n" 296 #ifndef RT_OS_L4 296 297 " -natdev<1-N> Configure NAT for network device N\n" 298 #endif 297 299 " -hifdev<1-N> <dev> <mac> Use existing Host Interface Network Device with the given name and MAC address\n" 298 300 #if 0 … … 502 504 return SyntaxError("The path to the specified cdrom, '%s', could not be resolved.\n", argv[curArg]); 503 505 } 506 #ifdef RT_OS_L4 507 /* This is leaving a lot of dead code in the L4 version of course, 508 but I don't think that that is a major problem. We may even 509 activate it sometime... */ 510 else if ( strncmp(pszArg, "-hifdev", 7) == 0 511 || strncmp(pszArg, "-nonetd", 7) == 0) 512 #else 504 513 else if ( strncmp(pszArg, "-natdev", 7) == 0 505 514 || strncmp(pszArg, "-hifdev", 7) == 0 506 515 || strncmp(pszArg, "-nonetd", 7) == 0 507 516 || strncmp(pszArg, "-intnet", 7) == 0) 517 #endif 508 518 { 509 519 int i = networkArg2Index(pszArg, 7);
Note:
See TracChangeset
for help on using the changeset viewer.