Changeset 2602 in vbox for trunk/src/VBox/Frontends
- Timestamp:
- May 12, 2007 8:01:48 AM (18 years ago)
- svn:sync-xref-src-repo-rev:
- 21109
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Frontends/VBoxManage/VBoxManage.cpp
r2601 r2602 300 300 " [-bioslogoimagepath <imagepath>]\n" 301 301 " [-biosbootmenu disabled|menuonly|messageandmenu]\n" 302 " [-biossystemtimeoffset <msec>]\n" 302 303 " [-boot<1-4> none|floppy|dvd|disk|net>]\n" 303 304 " [-hd<a|b|d> none|<uuid>|<filename>]\n" … … 753 754 biosSettings->COMGETTER(IOAPICEnabled)(&ioapicEnabled); 754 755 RTPrintf("IOAPIC: %s\n", ioapicEnabled ? "on" : "off"); 756 757 LONG64 timeOffset; 758 biosSettings->COMGETTER(TimeOffset)(&timeOffset); 759 RTPrintf("Time offset: %ld ms\n", timeOffset); 755 760 756 761 TriStateBool_T hwVirtExEnabled; … … 2701 2706 char *bioslogoimagepath = NULL; 2702 2707 char *biosbootmenumode = NULL; 2708 char *biossystemtimeoffset = NULL; 2703 2709 DeviceType_T bootDevice[4]; 2704 2710 int bootDeviceChanged[4] = { false }; … … 2856 2862 biosbootmenumode = argv[i]; 2857 2863 } 2864 else if (strcmp(argv[i], "-biossystemtimeoffset") == 0) 2865 { 2866 if (argc <= i + 1) 2867 { 2868 return errorArgument("Missing argument to '%s'", argv[i]); 2869 } 2870 i++; 2871 biossystemtimeoffset = argv[i]; 2872 } 2858 2873 else if (strncmp(argv[i], "-boot", 5) == 0) 2859 2874 { … … 3332 3347 } 3333 3348 3349 } 3350 if (biossystemtimeoffset) 3351 { 3352 LONG64 timeOffset = RTStrToInt64(biossystemtimeoffset); 3353 CHECK_ERROR(biosSettings, COMSETTER(TimeOffset)(timeOffset)); 3334 3354 } 3335 3355 for (int curBootDev = 0; curBootDev < 4; curBootDev++)
Note:
See TracChangeset
for help on using the changeset viewer.