Building VirtualBox OSE 32 bit (SVN) with VS2010

Discussions related to using the OSE version of VirtualBox.
mhanor
Volunteer
Posts: 321
Joined: 7. Oct 2009, 12:40
Primary OS: MS Windows 10
VBox Version: PUEL
Guest OSses: various

Building VirtualBox OSE 32 bit (SVN) with VS2010

Post by mhanor »

Software I've used:
  • Windows XP SP3 (host OS)
    Visual Studio 2010 Ultimate trial (Visual C++) +SP1
    Windows DDK 7.1 (build environments and tools)
    DirectX SDK Feb 2010 (utilities, libraries and headers)
    CollabNet Subversion client 1.6.17
    Active Perl5.12.3.1204-MSWin32-x86-294330
    Active Python 2.7.1.4-win32-x86
    MingW 4.5 & stuff, I've used the following packages (see this howto):
    • binutils
      gcc-core (bin+dll)
      gcc-g++ (bin+dll)
      gmp (dev+both dlls, libgmp and libgmpxx)
      mingw-runtime (mingwrt dev+dll)
      mpc (dev+dll)
      mpfr (dev+dll)
      w32api
      intl (dll)
      iconv (dev+dll)
Libraries:
  • Qt 4.7.3 sources
    cURL 7.21.7
    OpenSSL 0.9.8r
    SDL 1.2.14
Helper applications:
  • Notepad++
    Total Commander
    7zip
Directory tree:
  • c:\curl-7.21.7\
    c:\mingw\
    c:\openssl-0.9.8r\
    c:\Perl\
    c:\Python27\
    c:\Qt\4.7.3\
    c:\SDL-1.2.14\
    c:\vbox_svn
    c:\WinDDK\7600.16385.1\
    c:\Program Files\Microsoft DirectX SDK (February 2010)\
    c:\Program Files\Microsoft SDKs\Windows\v7.0A\
    c:\Program Files\Microsoft Visual Studio 10.0\VC\
Steps
:arrow: Open Command Prompt and type:

Code: Select all

cd \
svn co -r REVNUMBER http://www.virtualbox.org/svn/vbox/trunk vbox_svn
REVNUMBER is the svn revision number.


:arrow: Create a new file, named vbox_svn\config.bat, edit&save it:

Code: Select all

cscript configure.vbs --with-dxsdk="c:\PROGRA~1\Microsoft DirectX SDK (February 2010)" --with-mingw="c:\mingw" --with-libsdl="c:\SDL-1.2.14" --with-openssl="c:\openssl-0.9.8r" --with-libcurl="c:\curl-7.21.7" --with-python="c:\Python27" --with-qt4="c:\Qt\4.7.3"


:arrow: Small changes for a few DDK/VS2010 files are required:
[change #1] \Microsoft Visual Studio 10.0\VC\include\intrin.h ----- see the attached file
[change #2] Overwrite (backup first) \WinDDK\7600.16385.1\inc\api\sal.h with \Microsoft Visual Studio 10.0\VC\include\sal.h


Building SDL
Extract the SDL-1.2.14\VisualC.zip file, open&convert the SDL.sln file.
From the toolbar, change the Solution Configuration from Debug to Release.
Go to SDL project property pages, Linker -> General and select Additional Library Directories, add C:\Program Files\Microsoft DirectX SDK (February 2010)\Lib\x86
Build the solution
Create a SDL-1.2.14\lib folder. Copy the SDL.dll SDL.lib and SDLmain.lib files to the SDL-1.2.14\lib folder


:idea: Launch the Visual Studio Command Prompt and don't close it. It is required for the next steps.


Building Qt
Get the latest sources from here:
ftp://ftp.qt.nokia.com/qt/source/
Use Jom to speed the things up on multi core systems:
ftp://ftp.qt.nokia.com/jom/

Code: Select all

cd \Qt\4.7.3
configure -debug-and-release -opensource -no-accessibility -no-qt3support -rtti -no-openssl -no-dbus -no-phonon -no-multimedia -no-audio-backend -no-webkit -no-script -no-scripttools -no-declarative -no-native-gestures -nomake demos -nomake examples
@echo type jom or nmake, to start building Qt

Building OpenSSL
At the Visual Studio Command Prompt, execute:

Code: Select all

cd \openssl-0.9.8r
perl Configure VC-WIN32 --prefix=c:\openssl-0.9.8r
ms\do_masm
nmake -f ms\ntdll.mak
nmake -f ms\ntdll.mak install
Building libcurl
At the Visual Studio Command Prompt, execute:

Code: Select all

cd \curl-7.21.7
nmake vc VC=vc10
nmake vc-dll VC=vc10
Copy libcurl.lib and libcurl.dll to \curl-7.21.7

Building VirtualBox
Get and apply the latest patch for VirtualBox sources, from this thread (see the attached file), before building it.
At the Visual Studio Command Prompt, execute:

Code: Select all

set PATH=%PATH%;C:\Program Files\Microsoft SDKs\Windows\v7.0A\bin
set PATH=%PATH%;C:\mingw\bin
config
env
kmk

It may seem unsafe to put all in the root folder, but it was easier for me, with all the searching and error fixing.
I have only tested VirtualBox using the GUI component and the bridge networking feature. I have never tested any other OSE features, like the Guest Additions or the NAT component.
With SVN 38122, bridge networking is not functional on my system. I can install the driver, but the feature is not working (VERR_SUPDRV_COMPONENT_NOT_FOUND).
Attachments
vbox_patch_svn38776.txt
(34.2 KiB) Downloaded 167 times
vbox_patch_svn38122.txt
(32.5 KiB) Downloaded 147 times
intrin.h_patch.txt
(4.76 KiB) Downloaded 210 times
Last edited by mhanor on 21. Jan 2012, 01:04, edited 28 times in total.
peluse
Posts: 4
Joined: 1. Mar 2011, 16:23
Primary OS: MS Windows 7
VBox Version: OSE self-compiled
Guest OSses: Windows 7

Re: Building VirtualBox OSE 32 bit (SVN) with VS2010

Post by peluse »

I am trying to build OSE 4.0.2 based on these directions and after just a few adjustments have been successful however the exe does not work. I get a windows error 0xc000007b (app failed to init).

If anyone has been able to build and use OSE on a Windows7 host w/latest windows DDK+SDK+VS I'd like to trade stories and see how we may be able to help each other. I have a few other things to try and if I can get things working I'll post full details top go along with this post which was INCREDIBLY helpful in getting me as far as I've been able to get

thanks
Paul
mhanor
Volunteer
Posts: 321
Joined: 7. Oct 2009, 12:40
Primary OS: MS Windows 10
VBox Version: PUEL
Guest OSses: various

Re: Building VirtualBox OSE 32 bit (SVN) with VS2010

Post by mhanor »

Have you executed SUPUninstall, SUPInstall, comregister.cmd, in that order?
peluse
Posts: 4
Joined: 1. Mar 2011, 16:23
Primary OS: MS Windows 7
VBox Version: OSE self-compiled
Guest OSses: Windows 7

Re: Building VirtualBox OSE 32 bit (SVN) with VS2010

Post by peluse »

Thanks I actually figued out my problem, it was a mismatch between libcurl and zlib versions. I haven't done anything with my fresh build except bring up the GIU manager. Will attempt to install a new VM an if all works I'll go bak and retrace my steps and add to this post as there were a few changes I needed to make that aren't covered here (I assume because some code has changed since this was posted but there's always the chance I just did something wrong and found out to make two wrongs equal a right)

Paul
awilson
Posts: 6
Joined: 9. Apr 2011, 07:18
Primary OS: MS Windows 7
VBox Version: OSE self-compiled
Guest OSses: Linux

Re: Building VirtualBox OSE 32 bit (SVN) with VS2010

Post by awilson »

Hi Paul,
Can you tell which versions of libcurl and zlib you are using?

I have successfully built version 4.0.0 and 4.0.4 without building USB features and additions on Windows 7 because I had trouble to build USB features and additions. After a successfully install, I can run VirtualBox.exe to create VMs and import/export VMs. However when I start a linux VM either in iso format or vmdk format, I always hits a crash dialogbox after the vm starts booting. Click on OK button on the dialogbox, the vm then is powered off.

Attach my log messages. Does someone have an idea about this issue? and how to fix it?

Thanks a lot,
Wilson

Code: Select all

[list]
00:00:01.247 VirtualBox 4.0.0_OSE r35302 win.x86 (Apr  9 2011 21:46:27) release log
00:00:01.247 Log opened 2011-04-10T06:38:20.977163600Z
00:00:01.247 OS Product: Windows 7
00:00:01.247 OS Release: 6.1.7600
00:00:01.247 OS Service Pack: 
00:00:01.629 DMI Product Name: B202
00:00:01.642 DMI Product Version: System Version
00:00:01.648 Host RAM: 2039MB RAM, available: 1547MB
00:00:01.648 Executable: C:\temp\out\VirtualBox.exe
00:00:01.648 Process ID: 2640
00:00:01.648 Package type: WINDOWS_32BITS_GENERIC (OSE)
00:00:01.718 SUP: Loaded VMMR0.r0 (C:\temp\out\VMMR0.r0) at 0x93f7a000 - ModuleInit at 0000000093f8cba0 and ModuleTerm at 0000000093f8cc00 using the native ring-0 loader
00:00:01.718 SUP: VMMR0EntryEx located at 0000000093f8d9b0, VMMR0EntryFast at 0000000093f8cd70 and VMMR0EntryInt at 0000000093f8cd60
00:00:01.718 SUP: windbg> .reload /f C:\temp\out\VMMR0.r0=0x93f7a000
00:00:01.834 File system of 'C:\temp\test\Snapshots' (snapshots) is unknown
00:00:01.834 File system of 'C:\temp\mcdev\test-disk1.vmdk' is ntfs
00:00:02.017 VBoxSharedClipboard mode: Bidirectional
00:00:02.029 ************************* CFGM dump *************************
00:00:02.029 [/] (level 0)
00:00:02.029   CSAMEnabled     <integer> = 0x0000000000000001 (1)
00:00:02.029   CpuExecutionCap <integer> = 0x0000000000000064 (100)
00:00:02.029   EnablePAE       <integer> = 0x0000000000000001 (1)
00:00:02.029   HwVirtExtForced <integer> = 0x0000000000000000 (0)
00:00:02.029   MemBalloonSize  <integer> = 0x0000000000000000 (0)
00:00:02.029   Name            <string>  = "test" (cb=5)
00:00:02.029   NumCPUs         <integer> = 0x0000000000000001 (1)
00:00:02.029   PATMEnabled     <integer> = 0x0000000000000001 (1)
00:00:02.029   PageFusion      <integer> = 0x0000000000000000 (0)
00:00:02.029   RamHoleSize     <integer> = 0x0000000020000000 (536870912)
00:00:02.029   RamSize         <integer> = 0x0000000010000000 (268435456)
00:00:02.029   RawR0Enabled    <integer> = 0x0000000000000001 (1)
00:00:02.029   RawR3Enabled    <integer> = 0x0000000000000001 (1)
00:00:02.029   SyntheticCpu    <integer> = 0x0000000000000000 (0)
00:00:02.029   TimerMillies    <integer> = 0x000000000000000a (10)
00:00:02.029   UUID            <bytes>   = "06 be 3a 39 f9 8c 34 4d 85 1c 3c 79 cd b5 0e 30" (cb=16)
00:00:02.029 
00:00:02.029 [/CPUM/] (level 1)
00:00:02.029 
00:00:02.029 [/Devices/] (level 1)
00:00:02.029 
00:00:02.029 [/Devices/8237A/] (level 2)
00:00:02.029 
00:00:02.029 [/Devices/8237A/0/] (level 3)
00:00:02.029   Trusted <integer> = 0x0000000000000001 (1)
00:00:02.029 
00:00:02.029 [/Devices/AudioSniffer/] (level 2)
00:00:02.029 
00:00:02.029 [/Devices/AudioSniffer/0/] (level 3)
00:00:02.029 
00:00:02.029 [/Devices/AudioSniffer/0/Config/] (level 4)
00:00:02.029 
00:00:02.029 [/Devices/AudioSniffer/0/LUN#0/] (level 4)
00:00:02.029   Driver <string>  = "MainAudioSniffer" (cb=17)
00:00:02.029 
00:00:02.029 [/Devices/AudioSniffer/0/LUN#0/Config/] (level 5)
00:00:02.029   Object <integer> = 0x00000000006e0d80 (7212416)
00:00:02.029 
00:00:02.029 [/Devices/VMMDev/] (level 2)
00:00:02.029 
00:00:02.029 [/Devices/VMMDev/0/] (level 3)
00:00:02.029   PCIBusNo      <integer> = 0x0000000000000000 (0)
00:00:02.029   PCIDeviceNo   <integer> = 0x0000000000000004 (4)
00:00:02.029   PCIFunctionNo <integer> = 0x0000000000000000 (0)
00:00:02.029   Trusted       <integer> = 0x0000000000000001 (1)
00:00:02.029 
00:00:02.029 [/Devices/VMMDev/0/Config/] (level 4)
00:00:02.029   GuestCoreDumpDir <string>  = "C:\temp\test\Snapshots" (cb=23)
00:00:02.029   RamSize          <integer> = 0x0000000010000000 (268435456)
00:00:02.029 
00:00:02.029 [/Devices/VMMDev/0/LUN#0/] (level 4)
00:00:02.029   Driver <string>  = "HGCM" (cb=5)
00:00:02.029 
00:00:02.029 [/Devices/VMMDev/0/LUN#0/Config/] (level 5)
00:00:02.029   Object <integer> = 0x0000000002a50fa8 (44371880)
00:00:02.029 
00:00:02.029 [/Devices/VMMDev/0/LUN#999/] (level 4)
00:00:02.029   Driver <string>  = "MainStatus" (cb=11)
00:00:02.029 
00:00:02.029 [/Devices/VMMDev/0/LUN#999/Config/] (level 5)
00:00:02.029   First   <integer> = 0x0000000000000000 (0)
00:00:02.029   Last    <integer> = 0x0000000000000000 (0)
00:00:02.029   papLeds <integer> = 0x0000000000729938 (7510328)
00:00:02.029 
00:00:02.029 [/Devices/acpi/] (level 2)
00:00:02.029 
00:00:02.029 [/Devices/acpi/0/] (level 3)
00:00:02.029   PCIBusNo      <integer> = 0x0000000000000000 (0)
00:00:02.029   PCIDeviceNo   <integer> = 0x0000000000000007 (7)
00:00:02.029   PCIFunctionNo <integer> = 0x0000000000000000 (0)
00:00:02.029   Trusted       <integer> = 0x0000000000000001 (1)
00:00:02.029 
00:00:02.029 [/Devices/acpi/0/Config/] (level 4)
00:00:02.029   CpuHotPlug        <integer> = 0x0000000000000000 (0)
00:00:02.029   FdcEnabled        <integer> = 0x0000000000000001 (1)
00:00:02.029   HostBusPciAddress <integer> = 0x0000000000000000 (0)
00:00:02.029   HpetEnabled       <integer> = 0x0000000000000000 (0)
00:00:02.029   IOAPIC            <integer> = 0x0000000000000000 (0)
00:00:02.029   IocPciAddress     <integer> = 0x0000000000010000 (65536)
00:00:02.029   NumCPUs           <integer> = 0x0000000000000001 (1)
00:00:02.029   RamHoleSize       <integer> = 0x0000000020000000 (536870912)
00:00:02.029   RamSize           <integer> = 0x0000000010000000 (268435456)
00:00:02.029   ShowCpu           <integer> = 0x0000000000000000 (0)
00:00:02.029   ShowRtc           <integer> = 0x0000000000000000 (0)
00:00:02.029   SmcEnabled        <integer> = 0x0000000000000000 (0)
00:00:02.029 
00:00:02.029 [/Devices/acpi/0/LUN#0/] (level 4)
00:00:02.029   Driver <string>  = "ACPIHost" (cb=9)
00:00:02.029 
00:00:02.029 [/Devices/acpi/0/LUN#0/Config/] (level 5)
00:00:02.029 
00:00:02.029 [/Devices/apic/] (level 2)
00:00:02.029 
00:00:02.029 [/Devices/apic/0/] (level 3)
00:00:02.029   Trusted <integer> = 0x0000000000000001 (1)
00:00:02.029 
00:00:02.029 [/Devices/apic/0/Config/] (level 4)
00:00:02.029   IOAPIC  <integer> = 0x0000000000000000 (0)
00:00:02.029   NumCPUs <integer> = 0x0000000000000001 (1)
00:00:02.029 
00:00:02.029 [/Devices/e1000/] (level 2)
00:00:02.029 
00:00:02.029 [/Devices/i82078/] (level 2)
00:00:02.029 
00:00:02.029 [/Devices/i82078/0/] (level 3)
00:00:02.029   Trusted <integer> = 0x0000000000000001 (1)
00:00:02.029 
00:00:02.029 [/Devices/i82078/0/Config/] (level 4)
00:00:02.029   DMA       <integer> = 0x0000000000000002 (2)
00:00:02.029   IOBase    <integer> = 0x00000000000003f0 (1008)
00:00:02.029   IRQ       <integer> = 0x0000000000000006 (6)
00:00:02.029   MemMapped <integer> = 0x0000000000000000 (0)
00:00:02.029 
00:00:02.029 [/Devices/i82078/0/LUN#0/] (level 4)
00:00:02.029   Driver <string>  = "Block" (cb=6)
00:00:02.029 
00:00:02.029 [/Devices/i82078/0/LUN#0/Config/] (level 5)
00:00:02.029   Mountable <integer> = 0x0000000000000001 (1)
00:00:02.029   Type      <string>  = "Floppy 1.44" (cb=12)
00:00:02.029 
00:00:02.029 [/Devices/i82078/0/LUN#999/] (level 4)
00:00:02.029   Driver <string>  = "MainStatus" (cb=11)
00:00:02.029 
00:00:02.029 [/Devices/i82078/0/LUN#999/Config/] (level 5)
00:00:02.029   First   <integer> = 0x0000000000000000 (0)
00:00:02.029   Last    <integer> = 0x0000000000000000 (0)
00:00:02.029   papLeds <integer> = 0x000000000072982c (7510060)
00:00:02.029 
00:00:02.029 [/Devices/i8254/] (level 2)
00:00:02.029 
00:00:02.029 [/Devices/i8254/0/] (level 3)
00:00:02.029 
00:00:02.029 [/Devices/i8254/0/Config/] (level 4)
00:00:02.029 
00:00:02.029 [/Devices/i8259/] (level 2)
00:00:02.029 
00:00:02.029 [/Devices/i8259/0/] (level 3)
00:00:02.029   Trusted <integer> = 0x0000000000000001 (1)
00:00:02.029 
00:00:02.029 [/Devices/i8259/0/Config/] (level 4)
00:00:02.029 
00:00:02.029 [/Devices/ichac97/] (level 2)
00:00:02.030 
00:00:02.030 [/Devices/ichac97/0/] (level 3)
00:00:02.030   PCIBusNo      <integer> = 0x0000000000000000 (0)
00:00:02.030   PCIDeviceNo   <integer> = 0x0000000000000005 (5)
00:00:02.030   PCIFunctionNo <integer> = 0x0000000000000000 (0)
00:00:02.030   Trusted       <integer> = 0x0000000000000001 (1)
00:00:02.030 
00:00:02.030 [/Devices/ichac97/0/Config/] (level 4)
00:00:02.030 
00:00:02.030 [/Devices/ichac97/0/LUN#0/] (level 4)
00:00:02.030   Driver <string>  = "AUDIO" (cb=6)
00:00:02.030 
00:00:02.030 [/Devices/ichac97/0/LUN#0/Config/] (level 5)
00:00:02.030   AudioDriver <string>  = "dsound" (cb=7)
00:00:02.030   StreamName  <string>  = "test" (cb=5)
00:00:02.030 
00:00:02.030 [/Devices/mc146818/] (level 2)
00:00:02.030 
00:00:02.030 [/Devices/mc146818/0/] (level 3)
00:00:02.030 
00:00:02.030 [/Devices/mc146818/0/Config/] (level 4)
00:00:02.030   UseUTC <integer> = 0x0000000000000000 (0)
00:00:02.030 
00:00:02.030 [/Devices/parallel/] (level 2)
00:00:02.030 
00:00:02.030 [/Devices/pcarch/] (level 2)
00:00:02.030 
00:00:02.030 [/Devices/pcarch/0/] (level 3)
00:00:02.030   Trusted <integer> = 0x0000000000000001 (1)
00:00:02.030 
00:00:02.030 [/Devices/pcarch/0/Config/] (level 4)
00:00:02.030 
00:00:02.030 [/Devices/pcbios/] (level 2)
00:00:02.030 
00:00:02.030 [/Devices/pcbios/0/] (level 3)
00:00:02.030   Trusted <integer> = 0x0000000000000001 (1)
00:00:02.030 
00:00:02.030 [/Devices/pcbios/0/Config/] (level 4)
00:00:02.030   BootDevice0    <string>  = "FLOPPY" (cb=7)
00:00:02.030   BootDevice1    <string>  = "DVD" (cb=4)
00:00:02.030   BootDevice2    <string>  = "IDE" (cb=4)
00:00:02.030   BootDevice3    <string>  = "NONE" (cb=5)
00:00:02.030   FloppyDevice   <string>  = "i82078" (cb=7)
00:00:02.030   HardDiskDevice <string>  = "piix3ide" (cb=9)
00:00:02.030   IOAPIC         <integer> = 0x0000000000000000 (0)
00:00:02.030   McfgBase       <integer> = 0x0000000000000000 (0)
00:00:02.030   McfgLength     <integer> = 0x0000000000000000 (0)
00:00:02.030   NumCPUs        <integer> = 0x0000000000000001 (1)
00:00:02.030   PXEDebug       <integer> = 0x0000000000000000 (0)
00:00:02.030   RamHoleSize    <integer> = 0x0000000020000000 (536870912)
00:00:02.030   RamSize        <integer> = 0x0000000010000000 (268435456)
00:00:02.030   UUID           <bytes>   = "06 be 3a 39 f9 8c 34 4d 85 1c 3c 79 cd b5 0e 30" (cb=16)
00:00:02.030 
00:00:02.030 [/Devices/pcbios/0/Config/NetBoot/] (level 5)
00:00:02.030 
00:00:02.030 [/Devices/pcbios/0/Config/NetBoot/0/] (level 6)
00:00:02.030   NIC           <integer> = 0x0000000000000000 (0)
00:00:02.030   PCIBusNo      <integer> = 0x0000000000000000 (0)
00:00:02.030   PCIDeviceNo   <integer> = 0x0000000000000003 (3)
00:00:02.030   PCIFunctionNo <integer> = 0x0000000000000000 (0)
00:00:02.030 
00:00:02.030 [/Devices/pci/] (level 2)
00:00:02.030 
00:00:02.030 [/Devices/pci/0/] (level 3)
00:00:02.030   Trusted <integer> = 0x0000000000000001 (1)
00:00:02.030 
00:00:02.030 [/Devices/pci/0/Config/] (level 4)
00:00:02.030   IOAPIC <integer> = 0x0000000000000000 (0)
00:00:02.030 
00:00:02.030 [/Devices/pckbd/] (level 2)
00:00:02.030 
00:00:02.030 [/Devices/pckbd/0/] (level 3)
00:00:02.030   Trusted <integer> = 0x0000000000000001 (1)
00:00:02.030 
00:00:02.030 [/Devices/pckbd/0/Config/] (level 4)
00:00:02.030 
00:00:02.030 [/Devices/pckbd/0/LUN#0/] (level 4)
00:00:02.030   Driver <string>  = "KeyboardQueue" (cb=14)
00:00:02.030 
00:00:02.030 [/Devices/pckbd/0/LUN#0/AttachedDriver/] (level 5)
00:00:02.030   Driver <string>  = "MainKeyboard" (cb=13)
00:00:02.030 
00:00:02.030 [/Devices/pckbd/0/LUN#0/AttachedDriver/Config/] (level 6)
00:00:02.030   Object <integer> = 0x00000000006d83c0 (7177152)
00:00:02.030 
00:00:02.030 [/Devices/pckbd/0/LUN#0/Config/] (level 5)
00:00:02.030   QueueSize <integer> = 0x0000000000000040 (64)
00:00:02.030 
00:00:02.030 [/Devices/pckbd/0/LUN#1/] (level 4)
00:00:02.030   Driver <string>  = "MouseQueue" (cb=11)
00:00:02.030 
00:00:02.030 [/Devices/pckbd/0/LUN#1/AttachedDriver/] (level 5)
00:00:02.030   Driver <string>  = "MainMouse" (cb=10)
00:00:02.030 
00:00:02.030 [/Devices/pckbd/0/LUN#1/AttachedDriver/Config/] (level 6)
00:00:02.030   Object <integer> = 0x0000000000ccbfb0 (13418416)
00:00:02.030 
00:00:02.030 [/Devices/pckbd/0/LUN#1/Config/] (level 5)
00:00:02.030   QueueSize <integer> = 0x0000000000000080 (128)
00:00:02.030 
00:00:02.030 [/Devices/pcnet/] (level 2)
00:00:02.030 
00:00:02.030 [/Devices/pcnet/0/] (level 3)
00:00:02.030   PCIBusNo      <integer> = 0x0000000000000000 (0)
00:00:02.030   PCIDeviceNo   <integer> = 0x0000000000000003 (3)
00:00:02.030   PCIFunctionNo <integer> = 0x0000000000000000 (0)
00:00:02.030   Trusted       <integer> = 0x0000000000000001 (1)
00:00:02.030 
00:00:02.030 [/Devices/pcnet/0/Config/] (level 4)
00:00:02.030   Am79C973       <integer> = 0x0000000000000000 (0)
00:00:02.030   CableConnected <integer> = 0x0000000000000001 (1)
00:00:02.030   LineSpeed      <integer> = 0x0000000000000000 (0)
00:00:02.030   MAC            <bytes>   = "08 00 27 33 79 4d" (cb=6)
00:00:02.030 
00:00:02.030 [/Devices/pcnet/0/LUN#0/] (level 4)
00:00:02.030   Driver <string>  = "NAT" (cb=4)
00:00:02.030 
00:00:02.030 [/Devices/pcnet/0/LUN#0/Config/] (level 5)
00:00:02.030   AliasMode       <integer> = 0x0000000000000000 (0)
00:00:02.030   BootFile        <string>  = "test.pxe" (cb=9)
00:00:02.030   DNSProxy        <integer> = 0x0000000000000000 (0)
00:00:02.030   Network         <string>  = "10.0.2.0/24" (cb=12)
00:00:02.030   PassDomain      <integer> = 0x0000000000000001 (1)
00:00:02.030   TFTPPrefix      <string>  = "C:\Users\setup/.VirtualBox\TFTP" (cb=32)
00:00:02.030   UseHostResolver <integer> = 0x0000000000000000 (0)
00:00:02.030 
00:00:02.030 [/Devices/pcnet/0/LUN#999/] (level 4)
00:00:02.030   Driver <string>  = "MainStatus" (cb=11)
00:00:02.030 
00:00:02.030 [/Devices/pcnet/0/LUN#999/Config/] (level 5)
00:00:02.030   papLeds <integer> = 0x0000000000729918 (7510296)
00:00:02.030 
00:00:02.030 [/Devices/piix3ide/] (level 2)
00:00:02.030 
00:00:02.030 [/Devices/piix3ide/0/] (level 3)
00:00:02.030   PCIBusNo      <integer> = 0x0000000000000000 (0)
00:00:02.030   PCIDeviceNo   <integer> = 0x0000000000000001 (1)
00:00:02.030   PCIFunctionNo <integer> = 0x0000000000000001 (1)
00:00:02.030   Trusted       <integer> = 0x0000000000000001 (1)
00:00:02.030 
00:00:02.030 [/Devices/piix3ide/0/Config/] (level 4)
00:00:02.030   Type <string>  = "PIIX4" (cb=6)
00:00:02.030 
00:00:02.030 [/Devices/piix3ide/0/LUN#0/] (level 4)
00:00:02.030   Driver <string>  = "Block" (cb=6)
00:00:02.030 
00:00:02.030 [/Devices/piix3ide/0/LUN#0/AttachedDriver/] (level 5)
00:00:02.030   Driver <string>  = "VD" (cb=3)
00:00:02.030 
00:00:02.030 [/Devices/piix3ide/0/LUN#0/AttachedDriver/Config/] (level 6)
00:00:02.030   Format   <string>  = "RAW" (cb=4)
00:00:02.030   Path     <string>  = "C:\temp\ubuntu-10.04-desktop-i386.iso" (cb=38)
00:00:02.030   ReadOnly <integer> = 0x0000000000000001 (1)
00:00:02.031   Type     <string>  = "DVD" (cb=4)
00:00:02.031 
00:00:02.031 [/Devices/piix3ide/0/LUN#0/Config/] (level 5)
00:00:02.031   Mountable <integer> = 0x0000000000000001 (1)
00:00:02.031   Type      <string>  = "DVD" (cb=4)
00:00:02.031 
00:00:02.031 [/Devices/piix3ide/0/LUN#1/] (level 4)
00:00:02.031   Driver <string>  = "Block" (cb=6)
00:00:02.031 
00:00:02.031 [/Devices/piix3ide/0/LUN#1/AttachedDriver/] (level 5)
00:00:02.031   Driver <string>  = "VD" (cb=3)
00:00:02.031 
00:00:02.031 [/Devices/piix3ide/0/LUN#1/AttachedDriver/Config/] (level 6)
00:00:02.031   Format <string>  = "VMDK" (cb=5)
00:00:02.031   Path   <string>  = "C:\temp\mcdev\test-disk1.vmdk" (cb=30)
00:00:02.031   Type   <string>  = "HardDisk" (cb=9)
00:00:02.031 
00:00:02.031 [/Devices/piix3ide/0/LUN#1/Config/] (level 5)
00:00:02.031   Mountable <integer> = 0x0000000000000000 (0)
00:00:02.031   Type      <string>  = "HardDisk" (cb=9)
00:00:02.031 
00:00:02.031 [/Devices/piix3ide/0/LUN#999/] (level 4)
00:00:02.031   Driver <string>  = "MainStatus" (cb=11)
00:00:02.031 
00:00:02.031 [/Devices/piix3ide/0/LUN#999/Config/] (level 5)
00:00:02.031   First   <integer> = 0x0000000000000000 (0)
00:00:02.031   Last    <integer> = 0x0000000000000003 (3)
00:00:02.031   papLeds <integer> = 0x0000000000729830 (7510064)
00:00:02.031 
00:00:02.031 [/Devices/serial/] (level 2)
00:00:02.031 
00:00:02.031 [/Devices/vga/] (level 2)
00:00:02.031 
00:00:02.031 [/Devices/vga/0/] (level 3)
00:00:02.031   PCIBusNo      <integer> = 0x0000000000000000 (0)
00:00:02.031   PCIDeviceNo   <integer> = 0x0000000000000002 (2)
00:00:02.031   PCIFunctionNo <integer> = 0x0000000000000000 (0)
00:00:02.031   Trusted       <integer> = 0x0000000000000001 (1)
00:00:02.031 
00:00:02.031 [/Devices/vga/0/Config/] (level 4)
00:00:02.031   CustomVideoModes <integer> = 0x0000000000000000 (0)
00:00:02.031   FadeIn           <integer> = 0x0000000000000001 (1)
00:00:02.031   FadeOut          <integer> = 0x0000000000000001 (1)
00:00:02.031   HeightReduction  <integer> = 0x0000000000000000 (0)
00:00:02.031   LogoFile         <string>  = "" (cb=1)
00:00:02.031   LogoTime         <integer> = 0x0000000000000000 (0)
00:00:02.031   MonitorCount     <integer> = 0x0000000000000001 (1)
00:00:02.031   ShowBootMenu     <integer> = 0x0000000000000002 (2)
00:00:02.031   VRamSize         <integer> = 0x0000000000c00000 (12582912)
00:00:02.031 
00:00:02.031 [/Devices/vga/0/LUN#0/] (level 4)
00:00:02.031   Driver <string>  = "MainDisplay" (cb=12)
00:00:02.031 
00:00:02.031 [/Devices/vga/0/LUN#0/Config/] (level 5)
00:00:02.031   Object <integer> = 0x0000000000729c58 (7511128)
00:00:02.031 
00:00:02.031 [/Devices/virtio-net/] (level 2)
00:00:02.031 
00:00:02.031 [/HWVirtExt/] (level 1)
00:00:02.031   64bitEnabled       <integer> = 0x0000000000000000 (0)
00:00:02.031   EnableLargePages   <integer> = 0x0000000000000000 (0)
00:00:02.031   EnableNestedPaging <integer> = 0x0000000000000001 (1)
00:00:02.031   EnableVPID         <integer> = 0x0000000000000001 (1)
00:00:02.031   Enabled            <integer> = 0x0000000000000001 (1)
00:00:02.031   Exclusive          <integer> = 0x0000000000000000 (0)
00:00:02.031 
00:00:02.031 [/MM/] (level 1)
00:00:02.031   CanUseLargerHeap <integer> = 0x0000000000000000 (0)
00:00:02.031 
00:00:02.031 [/PDM/] (level 1)
00:00:02.031 
00:00:02.031 [/PDM/AsyncCompletion/] (level 2)
00:00:02.031 
00:00:02.031 [/PDM/AsyncCompletion/File/] (level 3)
00:00:02.031 
00:00:02.031 [/PDM/AsyncCompletion/File/BwGroups/] (level 4)
00:00:02.031 
00:00:02.031 [/PDM/BlkCache/] (level 2)
00:00:02.031   CacheSize <integer> = 0x0000000000500000 (5242880)
00:00:02.031 
00:00:02.031 [/PDM/Devices/] (level 2)
00:00:02.031 
00:00:02.031 [/PDM/Drivers/] (level 2)
00:00:02.031 
00:00:02.031 [/PDM/Drivers/VBoxC/] (level 3)
00:00:02.031   Path <string>  = "VBoxC" (cb=6)
00:00:02.031 
00:00:02.031 [/TM/] (level 1)
00:00:02.031   UTCOffset <integer> = 0x0000000000000000 (0)
00:00:02.031 
00:00:02.031 ********************* End of CFGM dump **********************
the rest in the next message...
[/list]
awilson
Posts: 6
Joined: 9. Apr 2011, 07:18
Primary OS: MS Windows 7
VBox Version: OSE self-compiled
Guest OSses: Linux

Re: Building VirtualBox OSE 32 bit (SVN) with VS2010

Post by awilson »

Code: Select all

00:00:02.032 MM: cbHyperHeap=0x140000 (1310720)
00:00:02.034 CPUMSetGuestCpuIdFeature: Enabled PAE
00:00:02.034 Logical host processors: 2 present, 2 max, 2 online, online mask: 0000000000000003
00:00:02.034 ************************* CPUID dump ************************
00:00:02.034          RAW Standard CPUIDs
00:00:02.034      Function  eax      ebx      ecx      edx
00:00:02.034 Gst: 00000000  00000005 756e6547 6c65746e 49656e69
00:00:02.034 Hst:           0000000a 756e6547 6c65746e 49656e69
00:00:02.034 Gst: 00000001  000106c2 00000800 00000209 0789f1ff
00:00:02.034 Hst:           000106c2 00020800 0040c39d bfe9fbff
00:00:02.034 Gst: 00000002  4fba5901 0e3080c0 00000000 00000000
00:00:02.035 Hst:           4fba5901 0e3080c0 00000000 00000000
00:00:02.035 Gst: 00000003  00000000 00000000 00000000 00000000
00:00:02.035 Hst:           00000000 00000000 00000000 00000000
00:00:02.035 Gst: 00000004  00000000 00000000 00000000 00000000
00:00:02.035 Hst:           00004121 0140003f 0000003f 00000001
00:00:02.035 Gst: 00000005  00000040 00000040 00000000 00000000
00:00:02.035 Hst:           00000040 00000040 00000003 00020220
00:00:02.035 Name:                            GenuineIntel
00:00:02.035 Supports:                        0-5
00:00:02.035 Family:                          6  	Extended: 0 	Effective: 6
00:00:02.035 Model:                           12  	Extended: 1 	Effective: 28
00:00:02.035 Stepping:                        2
00:00:02.035 Type:                            0 (primary)
00:00:02.035 APIC ID:                         0x00
00:00:02.035 Logical CPUs:                    0
00:00:02.035 CLFLUSH Size:                    8
00:00:02.035 Brand ID:                        0x00
00:00:02.035 Mnemonic - Description                 = guest (host)
00:00:02.035 FPU - x87 FPU on Chip                  = 1 (1)
00:00:02.035 VME - Virtual 8086 Mode Enhancements   = 1 (1)
00:00:02.035 DE - Debugging extensions              = 1 (1)
00:00:02.035 PSE - Page Size Extension              = 1 (1)
00:00:02.035 TSC - Time Stamp Counter               = 1 (1)
00:00:02.035 MSR - Model Specific Registers         = 1 (1)
00:00:02.035 PAE - Physical Address Extension       = 1 (1)
00:00:02.035 MCE - Machine Check Exception          = 1 (1)
00:00:02.035 CX8 - CMPXCHG8B instruction            = 1 (1)
00:00:02.035 APIC - APIC On-Chip                    = 0 (1)
00:00:02.035 10 - Reserved                          = 0 (0)
00:00:02.035 SEP - SYSENTER and SYSEXIT             = 0 (1)
00:00:02.035 MTRR - Memory Type Range Registers     = 1 (1)
00:00:02.035 PGE - PTE Global Bit                   = 1 (1)
00:00:02.035 MCA - Machine Check Architecture       = 1 (1)
00:00:02.035 CMOV - Conditional Move Instructions   = 1 (1)
00:00:02.035 PAT - Page Attribute Table             = 1 (1)
00:00:02.035 PSE-36 - 36-bit Page Size Extention    = 0 (0)
00:00:02.035 PSN - Processor Serial Number          = 0 (0)
00:00:02.035 CLFSH - CLFLUSH Instruction.           = 1 (1)
00:00:02.035 20 - Reserved                          = 0 (0)
00:00:02.035 DS - Debug Store                       = 0 (1)
00:00:02.035 ACPI - Thermal Mon. & Soft. Clock Ctrl.= 0 (1)
00:00:02.035 MMX - Intel MMX Technology             = 1 (1)
00:00:02.035 FXSR - FXSAVE and FXRSTOR Instructions = 1 (1)
00:00:02.035 SSE - SSE Support                      = 1 (1)
00:00:02.035 SSE2 - SSE2 Support                    = 1 (1)
00:00:02.035 SS - Self Snoop                        = 0 (1)
00:00:02.035 HTT - Hyper-Threading Technology       = 0 (1)
00:00:02.035 TM - Thermal Monitor                   = 0 (1)
00:00:02.035 30 - Reserved                          = 0 (0)
00:00:02.035 PBE - Pending Break Enable             = 0 (1)
00:00:02.035 Supports SSE3                          = 1 (1)
00:00:02.035 PCLMULQDQ                              = 0 (0)
00:00:02.035 DS Area 64-bit layout                  = 0 (1)
00:00:02.035 Supports MONITOR/MWAIT                 = 1 (1)
00:00:02.035 CPL-DS - CPL Qualified Debug Store     = 0 (1)
00:00:02.035 VMX - Virtual Machine Technology       = 0 (0)
00:00:02.035 SMX - Safer Mode Extensions            = 0 (0)
00:00:02.035 Enhanced SpeedStep Technology          = 0 (1)
00:00:02.035 Terminal Monitor 2                     = 0 (1)
00:00:02.035 Supplemental SSE3 instructions         = 1 (1)
00:00:02.035 L1 Context ID                          = 0 (0)
00:00:02.035 11 - Reserved                          = 0 (0)
00:00:02.035 FMA extensions using YMM state         = 0 (0)
00:00:02.035 CMPXCHG16B instruction                 = 0 (0)
00:00:02.035 xTPR Update Control                    = 0 (1)
00:00:02.035 Perf/Debug Capability MSR              = 0 (1)
00:00:02.035 16 - Reserved                          = 0 (0)
00:00:02.035 PCID - Process-context identifiers     = 0 (0)
00:00:02.035 DCA - Direct Cache Access              = 0 (0)
00:00:02.035 SSE4.1 instruction extensions          = 0 (0)
00:00:02.035 SSE4.2 instruction extensions          = 0 (0)
00:00:02.035 Supports the x2APIC extensions         = 0 (0)
00:00:02.035 MOVBE instruction                      = 0 (1)
00:00:02.035 POPCNT instruction                     = 0 (0)
00:00:02.035 TSC-Deadline LAPIC timer mode          = 0 (0)
00:00:02.035 AESNI instruction extensions           = 0 (0)
00:00:02.035 XSAVE/XRSTOR extended state feature    = 0 (0)
00:00:02.035 Supports OSXSAVE                       = 0 (0)
00:00:02.035 AVX instruction extensions             = 0 (0)
00:00:02.035 29/30 - Reserved                       = 0x0 (0x0)
00:00:02.035 31 - Reserved (always 0)               = 0 (0)
00:00:02.035 
00:00:02.035          RAW Extended CPUIDs
00:00:02.035      Function  eax      ebx      ecx      edx
00:00:02.035 Gst: 80000000  80000008 00000000 00000000 00000000
00:00:02.035 Hst:           80000008 00000000 00000000 00000000
00:00:02.035 Gst: 80000001  00000000 00000000 00000000 00000000
00:00:02.035 Hst:           00000000 00000000 00000001 00100000
00:00:02.035 Gst: 80000002  20202020 20202020 746e4920 52286c65
00:00:02.035 Hst:           20202020 20202020 746e4920 52286c65
00:00:02.035 Gst: 80000003  74412029 54286d6f 4320294d 4e205550
00:00:02.035 Hst:           74412029 54286d6f 4320294d 4e205550
00:00:02.035 Gst: 80000004  20303732 20402020 30362e31 007a4847
00:00:02.035 Hst:           20303732 20402020 30362e31 007a4847
00:00:02.035 Gst: 80000005  00000000 00000000 00000000 00000000
00:00:02.035 Hst:           00000000 00000000 00000000 00000000
00:00:02.035 Gst: 80000006  00000000 00000000 02008040 00000000
00:00:02.035 Hst:           00000000 00000000 02008040 00000000
00:00:02.035 Gst: 80000007  00000000 00000000 00000000 00000000
00:00:02.035 Hst:           00000000 00000000 00000000 00000000
00:00:02.035 Gst: 80000008  00002020 00000000 00000000 00000000
00:00:02.035 Hst:           00002020 00000000 00000000 00000000
00:00:02.035 Gst: 80000009  07280203 00000000 00000000 00002501*
00:00:02.035 Hst:           07280203 00000000 00000000 00002501
00:00:02.035 Ext Name:                        
00:00:02.035 Ext Supports:                    0x80000000-0x80000008
00:00:02.035 Family:                          0  	Extended: 0 	Effective: 0
00:00:02.035 Model:                           0  	Extended: 0 	Effective: 0
00:00:02.035 Stepping:                        0
00:00:02.035 Brand ID:                        0x000
00:00:02.035 Mnemonic - Description                 = guest (host)
00:00:02.035 FPU - x87 FPU on Chip                  = 0 (0)
00:00:02.035 VME - Virtual 8086 Mode Enhancements   = 0 (0)
00:00:02.035 DE - Debugging extensions              = 0 (0)
00:00:02.035 PSE - Page Size Extension              = 0 (0)
00:00:02.035 TSC - Time Stamp Counter               = 0 (0)
00:00:02.035 MSR - K86 Model Specific Registers     = 0 (0)
00:00:02.035 PAE - Physical Address Extension       = 0 (0)
00:00:02.035 MCE - Machine Check Exception          = 0 (0)
00:00:02.035 CX8 - CMPXCHG8B instruction            = 0 (0)
00:00:02.035 APIC - APIC On-Chip                    = 0 (0)
00:00:02.035 10 - Reserved                          = 0 (0)
00:00:02.035 SEP - SYSCALL and SYSRET               = 0 (0)
00:00:02.035 MTRR - Memory Type Range Registers     = 0 (0)
00:00:02.035 PGE - PTE Global Bit                   = 0 (0)
00:00:02.035 MCA - Machine Check Architecture       = 0 (0)
00:00:02.035 CMOV - Conditional Move Instructions   = 0 (0)
00:00:02.035 PAT - Page Attribute Table             = 0 (0)
00:00:02.035 PSE-36 - 36-bit Page Size Extention    = 0 (0)
00:00:02.035 18 - Reserved                          = 0 (0)
00:00:02.035 19 - Reserved                          = 0 (0)
00:00:02.035 NX - No-Execute Page Protection        = 0 (1)
00:00:02.035 DS - Debug Store                       = 0 (0)
00:00:02.035 AXMMX - AMD Extensions to MMX Instr.   = 0 (0)
00:00:02.035 MMX - Intel MMX Technology             = 0 (0)
00:00:02.035 FXSR - FXSAVE and FXRSTOR Instructions = 0 (0)
00:00:02.035 25 - AMD fast FXSAVE and FXRSTOR Instr.= 0 (0)
00:00:02.035 26 - 1 GB large page support           = 0 (0)
00:00:02.035 27 - RDTSCP instruction                = 0 (0)
00:00:02.035 28 - Reserved                          = 0 (0)
00:00:02.035 29 - AMD Long Mode                     = 0 (0)
00:00:02.035 30 - AMD Extensions to 3DNow           = 0 (0)
00:00:02.035 31 - AMD 3DNow                         = 0 (0)
00:00:02.035 LahfSahf - LAHF/SAHF in 64-bit mode    = 0 (1)
00:00:02.035 CmpLegacy - Core MP legacy mode (depr) = 0 (0)
00:00:02.035 SVM - AMD VM Extensions                = 0 (0)
00:00:02.035 APIC registers starting at 0x400       = 0 (0)
00:00:02.035 AltMovCR8 - LOCK MOV CR0 means MOV CR8 = 0 (0)
00:00:02.035 Advanced bit manipulation              = 0 (0)
00:00:02.035 SSE4A instruction support              = 0 (0)
00:00:02.035 Misaligned SSE mode                    = 0 (0)
00:00:02.035 PREFETCH and PREFETCHW instruction     = 0 (0)
00:00:02.035 OS visible workaround                  = 0 (0)
00:00:02.035 Instruction based sampling             = 0 (0)
00:00:02.035 SSE5 support                           = 0 (0)
00:00:02.035 SKINIT, STGI, and DEV support          = 0 (0)
00:00:02.035 Watchdog timer support.                = 0 (0)
00:00:02.035 31:14 - Reserved                       = 0x0 (0x0)
00:00:02.035 Full Name:                                Intel(R) Atom(TM) CPU N270   @ 1.60GHz
00:00:02.035 TLB 2/4M Instr/Uni:              res0     0 entries
00:00:02.035 TLB 2/4M Data:                   res0     0 entries
00:00:02.035 TLB 4K Instr/Uni:                res0     0 entries
00:00:02.035 TLB 4K Data:                     res0     0 entries
00:00:02.035 L1 Instr Cache Line Size:        0 bytes
00:00:02.035 L1 Instr Cache Lines Per Tag:    0
00:00:02.035 L1 Instr Cache Associativity:    res0  
00:00:02.035 L1 Instr Cache Size:             0 KB
00:00:02.035 L1 Data Cache Line Size:         0 bytes
00:00:02.035 L1 Data Cache Lines Per Tag:     0
00:00:02.035 L1 Data Cache Associativity:     res0  
00:00:02.035 L1 Data Cache Size:              0 KB
00:00:02.035 L2 TLB 2/4M Instr/Uni:           off       0 entries
00:00:02.035 L2 TLB 2/4M Data:                off       0 entries
00:00:02.035 L2 TLB 4K Instr/Uni:             off       0 entries
00:00:02.035 L2 TLB 4K Data:                  off       0 entries
00:00:02.035 L2 Cache Line Size:              0 bytes
00:00:02.035 L2 Cache Lines Per Tag:          0
00:00:02.035 L2 Cache Associativity:          off   
00:00:02.035 L2 Cache Size:                   0 KB
00:00:02.035 APM Features:                   
00:00:02.035 Physical Address Width:          32 bits
00:00:02.035 Virtual Address Width:           32 bits
00:00:02.035 Guest Physical Address Width:    0 bits
00:00:02.035 Physical Core Count:             0
00:00:02.035 
00:00:02.035          RAW Centaur CPUIDs
00:00:02.035      Function  eax      ebx      ecx      edx
00:00:02.035 Gst: c0000000  07280203 00000000 00000000 00002501
00:00:02.035 Hst:           07280203 00000000 00000000 00002501
00:00:02.035 Gst: c0000001  07280203 00000000 00000000 00002501
00:00:02.035 Hst:           07280203 00000000 00000000 00002501
00:00:02.035 Gst: c0000002  07280203 00000000 00000000 00002501
00:00:02.035 Hst:           07280203 00000000 00000000 00002501
00:00:02.035 Gst: c0000003  07280203 00000000 00000000 00002501
00:00:02.035 Hst:           07280203 00000000 00000000 00002501
00:00:02.035 Centaur Supports:                0xc0000000-0x07280203
00:00:02.035 Mnemonic - Description                 = guest (host)
00:00:02.035 AIS - Alternate Instruction Set        = 0 (1)
00:00:02.035 AIS-E - AIS enabled                    = 0 (0)
00:00:02.035 RNG - Random Number Generator          = 0 (0)
00:00:02.035 RNG-E - RNG enabled                    = 0 (0)
00:00:02.035 LH - LongHaul MSR 0000_110Ah           = 0 (0)
00:00:02.035 FEMMS - FEMMS                          = 0 (0)
00:00:02.035 ACE - Advanced Cryptography Engine     = 0 (0)
00:00:02.035 ACE-E - ACE enabled                    = 0 (0)
00:00:02.035 ACE2 - Advanced Cryptography Engine 2  = 0 (1)
00:00:02.035 ACE2-E - ACE enabled                   = 0 (0)
00:00:02.035 PHE - Hash Engine                      = 0 (1)
00:00:02.035 PHE-E - PHE enabled                    = 0 (0)
00:00:02.035 PMM - Montgomery Multiplier            = 0 (0)
00:00:02.035 PMM-E - PMM enabled                    = 0 (1)
00:00:02.035 
00:00:02.035 
00:00:02.035 ******************** End of CPUID dump **********************
rest in next post...
awilson
Posts: 6
Joined: 9. Apr 2011, 07:18
Primary OS: MS Windows 7
VBox Version: OSE self-compiled
Guest OSses: Linux

Re: Building VirtualBox OSE 32 bit (SVN) with VS2010

Post by awilson »

Code: Select all

00:00:02.037 pgmR3PoolInit: cMaxPages=0x400 cMaxUsers=0x800 cMaxPhysExts=0x800 fCacheEnable=true 
00:00:02.040 REM: VBoxREM32
00:00:02.069 TM: GIP - u32Mode=1 (SyncTSC) u32UpdateHz=64
00:00:02.101 TM: cTSCTicksPerSecond=0x5c05fe00 (1 543 896 576) fTSCVirtualized=true  fTSCUseRealTSC=false
00:00:02.101 TM: fMaybeUseOffsettedHostTSC=true  TSCTiedToExecution=false TSCNotTiedToHalt=false
00:00:02.102 CoreCode: R3=00dd0000 R0=84afc000 RC=a02a6000 Phys=000000007f2fc000 cb=0x2000
00:00:02.112 AIOMgr: Default manager type is "Async"
00:00:02.112 AIOMgr: Default file backend is "NonBuffered"
00:00:02.112 AIOMgr: Cache successfully initialised. Cache size is 5242880 bytes
00:00:02.112 AIOMgr: Cache commit interval is 10000 ms
00:00:02.112 AIOMgr: Cache commit threshold is 2621440 bytes
00:00:02.112 BlkCache: Cache successfully initialised. Cache size is 5242880 bytes
00:00:02.112 BlkCache: Cache commit interval is 10000 ms
00:00:02.112 BlkCache: Cache commit threshold is 2621440 bytes
00:00:02.119 [SMP] BIOS with 1 CPUs
00:00:02.129 SUP: Loaded VBoxDDR0.r0 (C:\temp\out\VBoxDDR0.r0) at 0x94e1d000 - ModuleInit at 0000000000000000 and ModuleTerm at 0000000000000000 using the native ring-0 loader
00:00:02.129 SUP: windbg> .reload /f C:\temp\out\VBoxDDR0.r0=0x94e1d000
00:00:02.133 SUP: Loaded VBoxDD2R0.r0 (C:\temp\out\VBoxDD2R0.r0) at 0x94e37000 - ModuleInit at 0000000000000000 and ModuleTerm at 0000000000000000 using the native ring-0 loader
00:00:02.133 SUP: windbg> .reload /f C:\temp\out\VBoxDD2R0.r0=0x94e37000
00:00:02.134 Activating Local APIC
00:00:02.134 CPUMSetGuestCpuIdFeature: Enabled APIC
00:00:02.134 CPUMSetGuestCpuIdFeature: Disabled x2APIC
00:00:02.134 PIT: mode=3 count=0x10000 (65536) - 18.20 Hz (ch=0)
00:00:02.148 Shared Folders service loaded.
00:00:02.172 DrvBlock: Flushes will be ignored
00:00:02.172 DrvBlock: Async flushes will be passed to the disk
00:00:02.172 DrvBlock: Flushes will be ignored
00:00:02.172 DrvBlock: Async flushes will be passed to the disk
00:00:02.173 VDInit finished
00:00:02.174 PIIX3 ATA: LUN#0: CD/DVD, total number of sectors 358115, passthrough disabled
00:00:02.174 DrvBlock: Flushes will be ignored
00:00:02.174 DrvBlock: Async flushes will be passed to the disk
00:00:02.498 PIIX3 ATA: LUN#1: disk, PCHS=16383/16/63, total number of sectors 16777216
00:00:02.500 PIIX3 ATA: LUN#2: no unit
00:00:02.500 PIIX3 ATA: LUN#3: no unit
00:00:02.501 PIIX3 ATA: Ctl#0: finished processing RESET
00:00:02.501 PIIX3 ATA: Ctl#1: finished processing RESET
00:00:02.577 NAT: value of BindIP has been ignored
00:00:02.579 Audio: Trying driver 'dsound'.
00:00:02.602 DSound: Could not initialize DirectSound
00:00:02.602 DSound: Reason: No sound driver is available for use, or the given GUID is not a valid DirectSound device ID
00:00:02.602 Audio: Initialization of driver 'dsound' failed, trying 'dsound'.
00:00:02.603 DSound: Could not initialize DirectSound
00:00:02.603 DSound: Reason: No sound driver is available for use, or the given GUID is not a valid DirectSound device ID
00:00:02.603 Audio: Initialization of driver 'dsound' failed, trying 'null'.
00:00:02.603 Audio: set_record_source ars=0 als=0 (not implemented)
00:00:02.606 DevPcBios: ATA LUN#1 LCHS=1024/255/63
00:00:02.607 PGM: The CPU physical address width is 32 bits
00:00:02.607 PGMR3InitFinalize: 4 MB PSE mask 00000000ffffffff
00:00:02.619 VMM: fUsePeriodicPreemptionTimers=false
00:00:02.619 HWACCM: No VT-x or AMD-V CPU extension found. Reason VERR_VMX_NO_VMX
00:00:02.619 HWACCM: VMX MSR_IA32_FEATURE_CONTROL=0
00:00:02.629 VM: Halt method global1 (5)
00:00:02.629 HaltedGlobal1 config: cNsSpinBlockThresholdCfg=125000
00:00:02.629 Changing the VM state from 'CREATING' to 'CREATED'.
00:00:02.630 Changing the VM state from 'CREATED' to 'POWERING_ON'.
00:00:02.630 Changing the VM state from 'POWERING_ON' to 'RUNNING'.
00:00:02.643 Guest Log: BIOS: VirtualBox 4.0.0_OSE
00:00:02.644 PIT: mode=2 count=0x10000 (65536) - 18.20 Hz (ch=0)
00:00:02.700 PIIX3 ATA: Ctl#0: RESET, DevSel=0 AIOIf=0 CmdIf0=0x00 (-1 usec ago) CmdIf1=0x00 (-1 usec ago)
00:00:02.701 PIIX3 ATA: Ctl#0: finished processing RESET
00:00:02.709 PIIX3 ATA: Ctl#0: RESET, DevSel=1 AIOIf=0 CmdIf0=0xa1 (-1 usec ago) CmdIf1=0x00 (-1 usec ago)
00:00:02.709 PIIX3 ATA: Ctl#0: finished processing RESET
00:00:02.712 Guest Log: BIOS: ata0-1: PCHS=16383/16/63 LCHS=1024/255/63
00:00:02.716 PIT: mode=2 count=0x48d3 (18643) - 64.00 Hz (ch=0)
00:00:02.735 Display::handleDisplayResize(): uScreenId = 0, pvVRAM=05580000 w=640 h=480 bpp=32 cbLine=0xA00, flags=0x1
00:00:02.740 2D video acceleration is disabled.
00:00:05.202 Display::handleDisplayResize(): uScreenId = 0, pvVRAM=00000000 w=720 h=400 bpp=0 cbLine=0x0, flags=0x1
00:00:05.215 PIT: mode=2 count=0x10000 (65536) - 18.20 Hz (ch=0)
00:00:05.223 Guest Log: BIOS: Boot from Floppy 0 failed
00:00:05.236 Guest Log: BIOS: Booting from CD-ROM...
00:00:05.452 Display::handleDisplayResize(): uScreenId = 0, pvVRAM=05580000 w=640 h=480 bpp=16 cbLine=0x500, flags=0x1
00:00:16.484 Display::handleDisplayResize(): uScreenId = 0, pvVRAM=00000000 w=720 h=400 bpp=0 cbLine=0x0, flags=0x1
00:00:16.524 Display::handleDisplayResize(): uScreenId = 0, pvVRAM=05580000 w=640 h=480 bpp=0 cbLine=0x140, flags=0x1
00:00:16.564 Display::handleDisplayResize(): uScreenId = 0, pvVRAM=00000000 w=720 h=400 bpp=0 cbLine=0x0, flags=0x1
00:00:16.569 Guest Log: BIOS: KBD: unsupported int 16h function 03
00:00:16.604 Display::handleDisplayResize(): uScreenId = 0, pvVRAM=00000000 w=640 h=400 bpp=0 cbLine=0x0, flags=0x1
00:00:16.624 Display::handleDisplayResize(): uScreenId = 0, pvVRAM=00000000 w=720 h=400 bpp=0 cbLine=0x0, flags=0x1
00:00:19.886 !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
00:00:19.886 !!
00:00:19.886 !!                 Guru Meditation -2403 (VERR_TRPM_DONT_PANIC)
00:00:19.886 !!
00:00:19.887 !! TRAP=0e ERRCD=0000000000000009 CR2=00000000ff213ee4 EIP=ff0ed67c Type=0
00:00:19.887 !! EIP in VMMGC.gc (ff0d3000) at rva 1a67c near symbols:
00:00:19.887 !!    ff0ecf40 rva 00019f40 off 0000073c  PGMGstSetPage
00:00:19.887 !!    ff0ed6e0 rva 0001a6e0 off -00000064 pgmRCGst32BitGetPage
00:00:19.887 !! fff8:ff0ed67c 8b 00                   mov eax, dword [eax]
00:00:19.887 !!
00:00:19.887 !!
00:00:19.887 !!
00:00:19.887 Hypervisor CPUM state: se
00:00:19.887 .eax=ff213ee4 .ebx=00000000 .ecx=000003b9 .edx=ff213000 .esi=fed5ee0c .edi=c03b9870
00:00:19.887 .eip=ff0ed67c .esp=fed5ede4 .ebp=fed5edec .iopl=0        rf nv up di pl zr na pe nc
00:00:19.887 .cs={fff8 base=0000000000000000 limit=00000000 flags=00000000} .dr0=00000000 .dr1=00000000
00:00:19.887 .ds={fff0 base=0000000000000000 limit=00000000 flags=00000000} .dr2=00000000 .dr3=00000000
00:00:19.887 .es={fff0 base=0000000000000000 limit=00000000 flags=00000000} .dr4=00000000 .dr5=00000000
00:00:19.887 .fs={00d8 base=0000000000000000 limit=00000000 flags=00000000} .dr6=00000000 .dr7=00000000
00:00:19.887 .gs={00e0 base=0000000000000000 limit=00000000 flags=00000000} .cr0=00000000 .cr2=00000000
00:00:19.887 .ss={fff0 base=0000000000000000 limit=00000000 flags=00000000} .cr3=7ec03000 .cr4=00000000
00:00:19.887 .gdtr=00000000feea9000:ffff  .idtr=00000000fec06bd0:07ff  .eflags=00010002
00:00:19.887 .ldtr={0000 base=00000000 limit=00000000 flags=00000000}
00:00:19.887 .tr  ={ffe0 base=00000000 limit=00000000 flags=00000000}
00:00:19.887 .SysEnter={cs=0000 eip=00000000 esp=00000000}
00:00:19.887 .FCW=0000 .FSW=0000 .FTW=0000 .FOP=0000 .MXCSR=00000000 .MXCSR_MASK=00000000
00:00:19.887 .FPUIP=00000000 .CS=0000 .Rsvrd1=0000  .FPUDP=00000000 .DS=0000 .Rsvrd2=0000
00:00:19.887 .ST(0)=.FPR0={0000'00000000'00000000} t0 +0.0000000000000000000000 ^ 0
00:00:19.887 .ST(1)=.FPR1={0000'00000000'00000000} t0 +0.0000000000000000000000 ^ 0
00:00:19.887 .ST(2)=.FPR2={0000'00000000'00000000} t0 +0.0000000000000000000000 ^ 0
00:00:19.887 .ST(3)=.FPR3={0000'00000000'00000000} t0 +0.0000000000000000000000 ^ 0
00:00:19.887 .ST(4)=.FPR4={0000'00000000'00000000} t0 +0.0000000000000000000000 ^ 0
00:00:19.887 .ST(5)=.FPR5={0000'00000000'00000000} t0 +0.0000000000000000000000 ^ 0
00:00:19.887 .ST(6)=.FPR6={0000'00000000'00000000} t0 +0.0000000000000000000000 ^ 0
00:00:19.887 .ST(7)=.FPR7={0000'00000000'00000000} t0 +0.0000000000000000000000 ^ 0
00:00:19.887 .XMM0 =00000000'00000000'00000000'00000000  .XMM1 =00000000'00000000'00000000'00000000
00:00:19.888 .XMM2 =00000000'00000000'00000000'00000000  .XMM3 =00000000'00000000'00000000'00000000
00:00:19.888 .XMM4 =00000000'00000000'00000000'00000000  .XMM5 =00000000'00000000'00000000'00000000
00:00:19.888 .XMM6 =00000000'00000000'00000000'00000000  .XMM7 =00000000'00000000'00000000'00000000
00:00:19.888 .XMM8 =00000000'00000000'00000000'00000000  .XMM9 =00000000'00000000'00000000'00000000
00:00:19.888 .XMM10=00000000'00000000'00000000'00000000  .XMM11=00000000'00000000'00000000'00000000
00:00:19.888 .XMM12=00000000'00000000'00000000'00000000  .XMM13=00000000'00000000'00000000'00000000
00:00:19.888 .XMM14=00000000'00000000'00000000'00000000  .XMM15=00000000'00000000'00000000'00000000
00:00:19.888 .EFER         =0000000000000000
00:00:19.888 .PAT          =0000000000000000
00:00:19.888 .STAR         =0000000000000000
00:00:19.888 .CSTAR        =0000000000000000
00:00:19.888 .LSTAR        =0000000000000000
00:00:19.888 .SFMASK       =0000000000000000
00:00:19.888 .KERNELGSBASE =0000000000000000
00:00:19.888 CR4OrMask=0x204 CR4AndMask=0x403
00:00:19.889 !!
00:00:19.889 !! Call Stack:
00:00:19.889 !!
00:00:19.889 EBP      Ret EBP  Ret CS:EIP    Arg0     Arg1     Arg2     Arg3     CS:EIP        Symbol [line]
00:00:19.889 fed5edec fed5ee68 fff8:ff0ef239 fec1c000 c03b9870 00000000 fec01000 fff8:ff0ed67c PGMGstSetPage+73c
00:00:19.889 fed5ee68 fed5ee94 fff8:ff0ecb90 fec1c000 00000010 00000000 fed5eed4 fff8:ff0ef239 pgmRCBthPAE32BitTrap0eHandler+29
00:00:19.889 fed5ee94 fed5eec4 fff8:ff0d5bbc 00c1c000 00000010 00000000 fed5eed4 fff8:ff0ecb90 PGMTrap0eHandler+30
00:00:19.889 fed5eec4 c075ffb0 fff8:ff0d625f fec1e9c0 fed5eed4 c0761000 00000000 fff8:ff0d5bbc trpmRCShadowIDTWriteHandler+12ac
00:00:19.889 c075ffb0 00000000 fff8:00000000 00000000 00000000 00000000 00000000 fff8:ff0d625f TRPMGCHandlerGeneric+23f
00:00:19.889 !!
00:00:19.889 !! Raw stack (mind the direction). pbEMTStackRC=fed5d000 pbEMTStackBottomRC=fed5f000
00:00:19.889 !!
00:00:19.889 03dfc000 0000: 00 00 00 00 00 00 00 00-00 00 00 00 00 00 00 00 ................
00:00:19.889 03dfc010 0010: 00 00 00 00 00 00 00 00-00 00 00 00 00 00 00 00 ................
00:00:19.889 03dfc020 0020: 00 00 00 00 00 00 00 00-00 00 00 00 00 00 00 00 ................
00:00:19.889 03dfc030 0030: 00 00 00 00 00 00 00 00-00 00 00 00 00 00 00 00 ................
00:00:19.889 03dfc040 0040: 00 00 00 00 00 00 00 00-00 00 00 00 00 00 00 00 ................
00:00:19.889 03dfc050 0050: 00 00 00 00 00 00 00 00-00 00 00 00 00 00 00 00 ................
00:00:19.889 03dfc060 0060: 00 00 00 00 00 00 00 00-00 00 00 00 00 00 00 00 ................
00:00:19.889 03dfc070 0070: 00 00 00 00 00 00 00 00-00 00 00 00 00 00 00 00 ................
00:00:19.889 03dfc080 0080: 00 00 00 00 00 00 00 00-00 00 00 00 00 00 00 00 ................
00:00:19.889 03dfc090 0090: 00 00 00 00 00 00 00 00-00 00 00 00 00 00 00 00 ................
00:00:19.889 03dfc0a0 00a0: 00 00 00 00 00 00 00 00-00 00 00 00 00 00 00 00 ................
00:00:19.889 03dfc0b0 00b0: 00 00 00 00 00 00 00 00-00 00 00 00 00 00 00 00 ................
00:00:19.889 03dfc0c0 00c0: 00 00 00 00 00 00 00 00-00 00 00 00 00 00 00 00 ................
00:00:19.889 03dfc0d0 00d0: 00 00 00 00 00 00 00 00-00 00 00 00 00 00 00 00 ................
00:00:19.890 03dfc0e0 00e0: 00 00 00 00 00 00 00 00-00 00 00 00 00 00 00 00 ................
00:00:19.890 03dfc0f0 00f0: 00 00 00 00 00 00 00 00-00 00 00 00 00 00 00 00 ................
00:00:19.890 03dfc100 0100: 00 00 00 00 00 00 00 00-00 00 00 00 00 00 00 00 ................
00:00:19.890 03dfc110 0110: 00 00 00 00 00 00 00 00-00 00 00 00 00 00 00 00 ................
00:00:19.890 03dfc120 0120: 00 00 00 00 00 00 00 00-00 00 00 00 00 00 00 00 ................
00:00:19.890 03dfc130 0130: 00 00 00 00 00 00 00 00-00 00 00 00 00 00 00 00 ................
00:00:19.890 03dfc140 0140: 00 00 00 00 00 00 00 00-00 00 00 00 00 00 00 00 ................
00:00:19.890 03dfc150 0150: 00 00 00 00 00 00 00 00-00 00 00 00 00 00 00 00 ................
00:00:19.890 03dfc160 0160: 00 00 00 00 00 00 00 00-00 00 00 00 00 00 00 00 ................
00:00:19.890 03dfc170 0170: 00 00 00 00 00 00 00 00-00 00 00 00 00 00 00 00 ................
00:00:19.890 03dfc180 0180: 00 00 00 00 00 00 00 00-00 00 00 00 00 00 00 00 ................
00:00:19.890 03dfc190 0190: 00 00 00 00 00 00 00 00-00 00 00 00 00 00 00 00 ................
00:00:19.890 03dfc1a0 01a0: 00 00 00 00 00 00 00 00-00 00 00 00 00 00 00 00 ................
00:00:19.890 03dfc1b0 01b0: 00 00 00 00 00 00 00 00-00 00 00 00 00 00 00 00 ................
00:00:19.890 03dfc1c0 01c0: 00 00 00 00 00 00 00 00-00 00 00 00 00 00 00 00 ................
00:00:19.890 03dfc1d0 01d0: 00 00 00 00 00 00 00 00-00 00 00 00 00 00 00 00 ................
00:00:19.890 03dfc1e0 01e0: 00 00 00 00 00 00 00 00-00 00 00 00 00 00 00 00 ................
00:00:19.890 03dfc1f0 01f0: 00 00 00 00 00 00 00 00-00 00 00 00 00 00 00 00 ................
00:00:19.890 03dfc200 0200: 00 00 00 00 00 00 00 00-00 00 00 00 00 00 00 00 ................
00:00:19.890 03dfc210 0210: 00 00 00 00 00 00 00 00-00 00 00 00 00 00 00 00 ................
00:00:19.890 03dfc220 0220: 00 00 00 00 00 00 00 00-00 00 00 00 00 00 00 00 ................
00:00:19.890 03dfc230 0230: 00 00 00 00 00 00 00 00-00 00 00 00 00 00 00 00 ................
00:00:19.890 03dfc240 0240: 00 00 00 00 00 00 00 00-00 00 00 00 00 00 00 00 ................
00:00:19.890 03dfc250 0250: 00 00 00 00 00 00 00 00-00 00 00 00 00 00 00 00 ................
00:00:19.890 03dfc260 0260: 00 00 00 00 00 00 00 00-00 00 00 00 00 00 00 00 ................
00:00:19.890 03dfc270 0270: 00 00 00 00 00 00 00 00-00 00 00 00 00 00 00 00 ................
00:00:19.890 03dfc280 0280: 00 00 00 00 00 00 00 00-00 00 00 00 00 00 00 00 ................
00:00:19.890 03dfc290 0290: 00 00 00 00 00 00 00 00-00 00 00 00 00 00 00 00 ................
00:00:19.890 03dfc2a0 02a0: 00 00 00 00 00 00 00 00-00 00 00 00 00 00 00 00 ................
00:00:19.890 03dfc2b0 02b0: 00 00 00 00 00 00 00 00-00 00 00 00 00 00 00 00 ................
00:00:19.890 03dfc2c0 02c0: 00 00 00 00 00 00 00 00-00 00 00 00 00 00 00 00 ................
00:00:19.890 03dfc2d0 02d0: 00 00 00 00 00 00 00 00-00 00 00 00 00 00 00 00 ................
00:00:19.890 03dfc2e0 02e0: 00 00 00 00 00 00 00 00-00 00 00 00 00 00 00 00 ................
00:00:19.890 03dfc2f0 02f0: 00 00 00 00 00 00 00 00-00 00 00 00 00 00 00 00 ................
00:00:19.890 03dfc300 0300: 00 00 00 00 00 00 00 00-00 00 00 00 00 00 00 00 ................
00:00:19.890 03dfc310 0310: 00 00 00 00 00 00 00 00-00 00 00 00 00 00 00 00 ................
00:00:19.890 03dfc320 0320: 00 00 00 00 00 00 00 00-00 00 00 00 00 00 00 00 ................
00:00:19.890 03dfc330 0330: 00 00 00 00 00 00 00 00-00 00 00 00 00 00 00 00 ................
00:00:19.890 03dfc340 0340: 00 00 00 00 00 00 00 00-00 00 00 00 00 00 00 00 ................
00:00:19.890 03dfc350 0350: 00 00 00 00 00 00 00 00-00 00 00 00 00 00 00 00 ................
00:00:19.890 03dfc360 0360: 00 00 00 00 00 00 00 00-00 00 00 00 00 00 00 00 ................
00:00:19.890 03dfc370 0370: 00 00 00 00 00 00 00 00-00 00 00 00 00 00 00 00 ................
00:00:19.890 03dfc380 0380: 00 00 00 00 00 00 00 00-00 00 00 00 00 00 00 00 ................
00:00:19.890 03dfc390 0390: 00 00 00 00 00 00 00 00-00 00 00 00 00 00 00 00 ................
00:00:19.890 03dfc3a0 03a0: 00 00 00 00 00 00 00 00-00 00 00 00 00 00 00 00 ................
00:00:19.890 03dfc3b0 03b0: 00 00 00 00 00 00 00 00-00 00 00 00 00 00 00 00 ................
00:00:19.890 03dfc3c0 03c0: 00 00 00 00 00 00 00 00-00 00 00 00 00 00 00 00 ................
00:00:19.890 03dfc3d0 03d0: 00 00 00 00 00 00 00 00-00 00 00 00 00 00 00 00 ................
00:00:19.890 03dfc3e0 03e0: 00 00 00 00 00 00 00 00-00 00 00 00 00 00 00 00 ................
00:00:19.890 03dfc3f0 03f0: 00 00 00 00 00 00 00 00-00 00 00 00 00 00 00 00 ................
00:00:19.890 03dfc400 0400: 00 00 00 00 00 00 00 00-00 00 00 00 00 00 00 00 ................
00:00:19.890 03dfc410 0410: 00 00 00 00 00 00 00 00-00 00 00 00 00 00 00 00 ................
00:00:19.890 03dfc420 0420: 00 00 00 00 00 00 00 00-00 00 00 00 00 00 00 00 ................
00:00:19.890 03dfc430 0430: 00 00 00 00 00 00 00 00-00 00 00 00 00 00 00 00 ................
00:00:19.890 03dfc440 0440: 00 00 00 00 00 00 00 00-00 00 00 00 00 00 00 00 ................
00:00:19.890 03dfc450 0450: 00 00 00 00 00 00 00 00-00 00 00 00 00 00 00 00 ................
00:00:19.890 03dfc460 0460: 00 00 00 00 00 00 00 00-00 00 00 00 00 00 00 00 ................
00:00:19.890 03dfc470 0470: 00 00 00 00 00 00 00 00-00 00 00 00 00 00 00 00 ................
00:00:19.890 03dfc480 0480: 00 00 00 00 00 00 00 00-00 00 00 00 00 00 00 00 ................
00:00:19.890 03dfc490 0490: 00 00 00 00 00 00 00 00-00 00 00 00 00 00 00 00 ................
00:00:19.890 03dfc4a0 04a0: 00 00 00 00 00 00 00 00-00 00 00 00 00 00 00 00 ................
00:00:19.890 03dfc4b0 04b0: 00 00 00 00 00 00 00 00-00 00 00 00 00 00 00 00 ................
00:00:19.890 03dfc4c0 04c0: 00 00 00 00 00 00 00 00-00 00 00 00 00 00 00 00 ................
00:00:19.890 03dfc4d0 04d0: 00 00 00 00 00 00 00 00-00 00 00 00 00 00 00 00 ................
00:00:19.890 03dfc4e0 04e0: 00 00 00 00 00 00 00 00-00 00 00 00 00 00 00 00 ................
00:00:19.890 03dfc4f0 04f0: 00 00 00 00 00 00 00 00-00 00 00 00 00 00 00 00 ................
00:00:19.890 03dfc500 0500: 00 00 00 00 00 00 00 00-00 00 00 00 00 00 00 00 ................
00:00:19.890 03dfc510 0510: 00 00 00 00 00 00 00 00-00 00 00 00 00 00 00 00 ................
00:00:19.890 03dfc520 0520: 00 00 00 00 00 00 00 00-00 00 00 00 00 00 00 00 ................
00:00:19.891 03dfc530 0530: 00 00 00 00 00 00 00 00-00 00 00 00 00 00 00 00 ................
00:00:19.891 03dfc540 0540: 00 00 00 00 00 00 00 00-00 00 00 00 00 00 00 00 ................
00:00:19.891 03dfc550 0550: 00 00 00 00 00 00 00 00-00 00 00 00 00 00 00 00 ................
00:00:19.891 03dfc560 0560: 00 00 00 00 00 00 00 00-00 00 00 00 00 00 00 00 ................
00:00:19.891 03dfc570 0570: 00 00 00 00 00 00 00 00-00 00 00 00 00 00 00 00 ................
00:00:19.891 03dfc580 0580: 00 00 00 00 00 00 00 00-00 00 00 00 00 00 00 00 ................
00:00:19.891 03dfc590 0590: 00 00 00 00 00 00 00 00-00 00 00 00 00 00 00 00 ................
00:00:19.891 03dfc5a0 05a0: 00 00 00 00 00 00 00 00-00 00 00 00 00 00 00 00 ................
00:00:19.891 03dfc5b0 05b0: 00 00 00 00 00 00 00 00-00 00 00 00 00 00 00 00 ................
00:00:19.891 03dfc5c0 05c0: 00 00 00 00 00 00 00 00-00 00 00 00 00 00 00 00 ................
00:00:19.891 03dfc5d0 05d0: 00 00 00 00 00 00 00 00-00 00 00 00 00 00 00 00 ................
00:00:19.891 03dfc5e0 05e0: 00 00 00 00 00 00 00 00-00 00 00 00 00 00 00 00 ................
00:00:19.891 03dfc5f0 05f0: 00 00 00 00 00 00 00 00-00 00 00 00 00 00 00 00 ................
00:00:19.891 03dfc600 0600: 00 00 00 00 00 00 00 00-00 00 00 00 00 00 00 00 ................
00:00:19.891 03dfc610 0610: 00 00 00 00 00 00 00 00-00 00 00 00 00 00 00 00 ................
00:00:19.891 03dfc620 0620: 00 00 00 00 00 00 00 00-00 00 00 00 00 00 00 00 ................
00:00:19.891 03dfc630 0630: 00 00 00 00 00 00 00 00-00 00 00 00 00 00 00 00 ................
00:00:19.891 03dfc640 0640: 00 00 00 00 00 00 00 00-00 00 00 00 00 00 00 00 ................
00:00:19.891 03dfc650 0650: 00 00 00 00 00 00 00 00-00 00 00 00 00 00 00 00 ................
00:00:19.891 03dfc660 0660: 00 00 00 00 00 00 00 00-00 00 00 00 00 00 00 00 ................
00:00:19.891 03dfc670 0670: 00 00 00 00 00 00 00 00-00 00 00 00 00 00 00 00 ................
00:00:19.891 03dfc680 0680: 00 00 00 00 00 00 00 00-00 00 00 00 00 00 00 00 ................
00:00:19.891 03dfc690 0690: 00 00 00 00 00 00 00 00-00 00 00 00 00 00 00 00 ................
00:00:19.891 03dfc6a0 06a0: 00 00 00 00 00 00 00 00-00 00 00 00 00 00 00 00 ................
00:00:19.891 03dfc6b0 06b0: 00 00 00 00 00 00 00 00-00 00 00 00 00 00 00 00 ................
00:00:19.891 03dfc6c0 06c0: 00 00 00 00 00 00 00 00-00 00 00 00 00 00 00 00 ................
00:00:19.891 03dfc6d0 06d0: 00 00 00 00 00 00 00 00-00 00 00 00 00 00 00 00 ................
00:00:19.891 03dfc6e0 06e0: 00 00 00 00 00 00 00 00-00 00 00 00 00 00 00 00 ................
00:00:19.891 03dfc6f0 06f0: 00 00 00 00 00 00 00 00-00 00 00 00 00 00 00 00 ................
00:00:19.891 03dfc700 0700: 00 00 00 00 00 00 00 00-00 00 00 00 00 00 00 00 ................
00:00:19.891 03dfc710 0710: 00 00 00 00 00 00 00 00-00 00 00 00 00 00 00 00 ................
00:00:19.891 03dfc720 0720: 00 00 00 00 00 00 00 00-00 00 00 00 00 00 00 00 ................
00:00:19.891 03dfc730 0730: 00 00 00 00 00 00 00 00-00 00 00 00 00 00 00 00 ................
00:00:19.891 03dfc740 0740: 00 00 00 00 00 00 00 00-00 00 00 00 00 00 00 00 ................
00:00:19.891 03dfc750 0750: 00 00 00 00 00 00 00 00-00 00 00 00 00 00 00 00 ................
00:00:19.891 03dfc760 0760: 00 00 00 00 00 00 00 00-00 00 00 00 00 00 00 00 ................
00:00:19.891 03dfc770 0770: 00 00 00 00 00 00 00 00-00 00 00 00 00 00 00 00 ................
00:00:19.891 03dfc780 0780: 00 00 00 00 00 00 00 00-00 00 00 00 00 00 00 00 ................
00:00:19.891 03dfc790 0790: 00 00 00 00 00 00 00 00-00 00 00 00 00 00 00 00 ................
00:00:19.891 03dfc7a0 07a0: 00 00 00 00 00 00 00 00-00 00 00 00 00 00 00 00 ................
00:00:19.891 03dfc7b0 07b0: 00 00 00 00 00 00 00 00-00 00 00 00 00 00 00 00 ................
00:00:19.891 03dfc7c0 07c0: 00 00 00 00 00 00 00 00-00 00 00 00 00 00 00 00 ................
00:00:19.891 03dfc7d0 07d0: 00 00 00 00 00 00 00 00-00 00 00 00 00 00 00 00 ................
00:00:19.891 03dfc7e0 07e0: 00 00 00 00 00 00 00 00-00 00 00 00 00 00 00 00 ................
00:00:19.891 03dfc7f0 07f0: 00 00 00 00 00 00 00 00-00 00 00 00 00 00 00 00 ................
00:00:19.891 03dfc800 0800: 00 00 00 00 00 00 00 00-00 00 00 00 00 00 00 00 ................
00:00:19.891 03dfc810 0810: 00 00 00 00 00 00 00 00-00 00 00 00 00 00 00 00 ................
00:00:19.891 03dfc820 0820: 00 00 00 00 00 00 00 00-00 00 00 00 00 00 00 00 ................
00:00:19.891 03dfc830 0830: 00 00 00 00 00 00 00 00-00 00 00 00 00 00 00 00 ................
00:00:19.891 03dfc840 0840: 00 00 00 00 00 00 00 00-00 00 00 00 00 00 00 00 ................
00:00:19.891 03dfc850 0850: 00 00 00 00 00 00 00 00-00 00 00 00 00 00 00 00 ................
00:00:19.891 03dfc860 0860: 00 00 00 00 00 00 00 00-00 00 00 00 00 00 00 00 ................
00:00:19.891 03dfc870 0870: 00 00 00 00 00 00 00 00-00 00 00 00 00 00 00 00 ................
00:00:19.891 03dfc880 0880: 00 00 00 00 00 00 00 00-00 00 00 00 00 00 00 00 ................
00:00:19.891 03dfc890 0890: 00 00 00 00 00 00 00 00-00 00 00 00 00 00 00 00 ................
00:00:19.891 03dfc8a0 08a0: 00 00 00 00 00 00 00 00-00 00 00 00 00 00 00 00 ................
00:00:19.891 03dfc8b0 08b0: 00 00 00 00 00 00 00 00-00 00 00 00 00 00 00 00 ................
00:00:19.891 03dfc8c0 08c0: 00 00 00 00 00 00 00 00-00 00 00 00 00 00 00 00 ................
00:00:19.891 03dfc8d0 08d0: 00 00 00 00 00 00 00 00-00 00 00 00 00 00 00 00 ................
00:00:19.891 03dfc8e0 08e0: 00 00 00 00 00 00 00 00-00 00 00 00 00 00 00 00 ................
00:00:19.891 03dfc8f0 08f0: 00 00 00 00 00 00 00 00-00 00 00 00 00 00 00 00 ................
00:00:19.891 03dfc900 0900: 00 00 00 00 00 00 00 00-00 00 00 00 00 00 00 00 ................
00:00:19.891 03dfc910 0910: 00 00 00 00 00 00 00 00-00 00 00 00 00 00 00 00 ................
00:00:19.891 03dfc920 0920: 00 00 00 00 00 00 00 00-00 00 00 00 00 00 00 00 ................
00:00:19.891 03dfc930 0930: 00 00 00 00 00 00 00 00-00 00 00 00 00 00 00 00 ................
00:00:19.891 03dfc940 0940: 00 00 00 00 00 00 00 00-00 00 00 00 00 00 00 00 ................
00:00:19.891 03dfc950 0950: 00 00 00 00 00 00 00 00-00 00 00 00 00 00 00 00 ................
00:00:19.891 03dfc960 0960: 00 00 00 00 00 00 00 00-00 00 00 00 00 00 00 00 ................
00:00:19.891 03dfc970 0970: 00 00 00 00 00 00 00 00-00 00 00 00 00 00 00 00 ................
00:00:19.891 03dfc980 0980: 00 00 00 00 00 00 00 00-00 00 00 00 00 00 00 00 ................
00:00:19.892 03dfc990 0990: 00 00 00 00 00 00 00 00-00 00 00 00 00 00 00 00 ................
00:00:19.892 03dfc9a0 09a0: 00 00 00 00 00 00 00 00-00 00 00 00 00 00 00 00 ................
00:00:19.892 03dfc9b0 09b0: 00 00 00 00 00 00 00 00-00 00 00 00 00 00 00 00 ................
00:00:19.892 03dfc9c0 09c0: 00 00 00 00 00 00 00 00-00 00 00 00 00 00 00 00 ................
00:00:19.892 03dfc9d0 09d0: 00 00 00 00 00 00 00 00-00 00 00 00 00 00 00 00 ................
00:00:19.892 03dfc9e0 09e0: 00 00 00 00 00 00 00 00-00 00 00 00 00 00 00 00 ................
00:00:19.892 03dfc9f0 09f0: 00 00 00 00 00 00 00 00-00 00 00 00 00 00 00 00 ................
00:00:19.892 03dfca00 0a00: 00 00 00 00 00 00 00 00-00 00 00 00 00 00 00 00 ................
00:00:19.892 03dfca10 0a10: 00 00 00 00 00 00 00 00-00 00 00 00 00 00 00 00 ................
00:00:19.892 03dfca20 0a20: 00 00 00 00 00 00 00 00-00 00 00 00 00 00 00 00 ................
00:00:19.892 03dfca30 0a30: 00 00 00 00 00 00 00 00-00 00 00 00 00 00 00 00 ................
00:00:19.892 03dfca40 0a40: 00 00 00 00 00 00 00 00-00 00 00 00 00 00 00 00 ................
00:00:19.892 03dfca50 0a50: 00 00 00 00 00 00 00 00-00 00 00 00 00 00 00 00 ................
00:00:19.892 03dfca60 0a60: 00 00 00 00 00 00 00 00-00 00 00 00 00 00 00 00 ................
00:00:19.892 03dfca70 0a70: 00 00 00 00 00 00 00 00-00 00 00 00 00 00 00 00 ................
00:00:19.892 03dfca80 0a80: 00 00 00 00 00 00 00 00-00 00 00 00 00 00 00 00 ................
00:00:19.892 03dfca90 0a90: 00 00 00 00 00 00 00 00-00 00 00 00 00 00 00 00 ................
00:00:19.892 03dfcaa0 0aa0: 00 00 00 00 00 00 00 00-00 00 00 00 00 00 00 00 ................
00:00:19.892 03dfcab0 0ab0: 00 00 00 00 00 00 00 00-00 00 00 00 00 00 00 00 ................
00:00:19.892 03dfcac0 0ac0: 00 00 00 00 00 00 00 00-00 00 00 00 00 00 00 00 ................
00:00:19.892 03dfcad0 0ad0: 00 00 00 00 00 00 00 00-00 00 00 00 00 00 00 00 ................
00:00:19.892 03dfcae0 0ae0: 00 00 00 00 00 00 00 00-00 00 00 00 00 00 00 00 ................
00:00:19.892 03dfcaf0 0af0: 00 00 00 00 00 00 00 00-00 00 00 00 00 00 00 00 ................
00:00:19.892 03dfcb00 0b00: 00 00 00 00 00 00 00 00-00 00 00 00 00 00 00 00 ................
00:00:19.892 03dfcb10 0b10: 00 00 00 00 00 00 00 00-00 00 00 00 00 00 00 00 ................
00:00:19.892 03dfcb20 0b20: 00 00 00 00 00 00 00 00-00 00 00 00 00 00 00 00 ................
00:00:19.892 03dfcb30 0b30: 00 00 00 00 00 00 00 00-00 00 00 00 00 00 00 00 ................
00:00:19.892 03dfcb40 0b40: 00 00 00 00 00 00 00 00-00 00 00 00 00 00 00 00 ................
00:00:19.892 03dfcb50 0b50: 00 00 00 00 00 00 00 00-00 00 00 00 00 00 00 00 ................
00:00:19.892 03dfcb60 0b60: 00 00 00 00 00 00 00 00-00 00 00 00 00 00 00 00 ................
00:00:19.892 03dfcb70 0b70: 00 00 00 00 00 00 00 00-00 00 00 00 00 00 00 00 ................
00:00:19.892 03dfcb80 0b80: 00 00 00 00 00 00 00 00-00 00 00 00 00 00 00 00 ................
00:00:19.892 03dfcb90 0b90: 00 00 00 00 00 00 00 00-00 00 00 00 00 00 00 00 ................
00:00:19.892 03dfcba0 0ba0: 00 00 00 00 00 00 00 00-00 00 00 00 00 00 00 00 ................
00:00:19.892 03dfcbb0 0bb0: 00 00 00 00 00 00 00 00-00 00 00 00 00 00 00 00 ................
00:00:19.892 03dfcbc0 0bc0: 00 00 00 00 00 00 00 00-00 00 00 00 00 00 00 00 ................
00:00:19.892 03dfcbd0 0bd0: 00 00 00 00 00 00 00 00-00 00 00 00 00 00 00 00 ................
00:00:19.892 03dfcbe0 0be0: 00 00 00 00 00 00 00 00-00 00 00 00 00 00 00 00 ................
00:00:19.892 03dfcbf0 0bf0: 00 00 00 00 00 00 00 00-00 00 00 00 00 00 00 00 ................
00:00:19.892 03dfcc00 0c00: 00 00 00 00 00 00 00 00-00 00 00 00 00 00 00 00 ................
00:00:19.892 03dfcc10 0c10: 00 00 00 00 00 00 00 00-00 00 00 00 00 00 00 00 ................
00:00:19.892 03dfcc20 0c20: 00 00 00 00 00 00 00 00-00 00 00 00 00 00 00 00 ................
00:00:19.892 03dfcc30 0c30: 00 00 00 00 00 00 00 00-00 00 00 00 00 00 00 00 ................
00:00:19.892 03dfcc40 0c40: 00 00 00 00 00 00 00 00-00 00 00 00 00 00 00 00 ................
00:00:19.892 03dfcc50 0c50: 00 00 00 00 00 00 00 00-00 00 00 00 00 00 00 00 ................
00:00:19.892 03dfcc60 0c60: 00 00 00 00 00 00 00 00-00 00 00 00 00 00 00 00 ................
00:00:19.892 03dfcc70 0c70: 00 00 00 00 00 00 00 00-00 00 00 00 00 00 00 00 ................
00:00:19.892 03dfcc80 0c80: 00 00 00 00 00 00 00 00-00 00 00 00 00 00 00 00 ................
00:00:19.892 03dfcc90 0c90: 00 00 00 00 00 00 00 00-00 00 00 00 00 00 00 00 ................
00:00:19.892 03dfcca0 0ca0: 00 00 00 00 00 00 00 00-00 00 00 00 00 00 00 00 ................
00:00:19.892 03dfccb0 0cb0: 00 00 00 00 00 00 00 00-00 00 00 00 00 00 00 00 ................
00:00:19.892 03dfccc0 0cc0: 00 00 00 00 00 00 00 00-00 00 00 00 00 00 00 00 ................
00:00:19.892 03dfccd0 0cd0: 00 00 00 00 00 00 00 00-00 00 00 00 00 00 00 00 ................
00:00:19.892 03dfcce0 0ce0: 00 00 00 00 00 00 00 00-00 00 00 00 00 00 00 00 ................
00:00:19.892 03dfccf0 0cf0: 00 00 00 00 00 00 00 00-00 00 00 00 00 00 00 00 ................
00:00:19.892 03dfcd00 0d00: 00 00 00 00 00 00 00 00-00 00 00 00 00 00 00 00 ................
00:00:19.892 03dfcd10 0d10: 00 00 00 00 00 00 00 00-00 00 00 00 00 00 00 00 ................
00:00:19.892 03dfcd20 0d20: 00 00 00 00 00 00 00 00-00 00 00 00 00 00 00 00 ................
00:00:19.892 03dfcd30 0d30: 00 00 00 00 00 00 00 00-00 00 00 00 00 00 00 00 ................
00:00:19.892 03dfcd40 0d40: 00 00 00 00 00 00 00 00-00 00 00 00 00 00 00 00 ................
00:00:19.892 03dfcd50 0d50: 00 00 00 00 00 00 00 00-00 00 00 00 00 00 00 00 ................
00:00:19.892 03dfcd60 0d60: 00 00 00 00 00 00 00 00-00 00 00 00 00 00 00 00 ................
00:00:19.892 03dfcd70 0d70: 00 00 00 00 00 00 00 00-00 00 00 00 00 00 00 00 ................
00:00:19.892 03dfcd80 0d80: 00 00 00 00 00 00 00 00-00 00 00 00 00 00 00 00 ................
00:00:19.892 03dfcd90 0d90: 00 00 00 00 00 00 00 00-00 00 00 00 00 00 00 00 ................
00:00:19.892 03dfcda0 0da0: 00 00 00 00 00 00 00 00-00 00 00 00 00 00 00 00 ................
00:00:19.892 03dfcdb0 0db0: 00 00 00 00 00 00 00 00-00 00 00 00 00 00 00 00 ................
00:00:19.892 03dfcdc0 0dc0: 00 00 00 00 00 00 00 00-00 00 00 00 00 00 00 00 ................
00:00:19.892 03dfcdd0 0dd0: 00 00 00 00 00 00 00 00-00 00 00 00 00 00 00 00 ................
00:00:19.893 03dfcde0 0de0: 00 00 00 00 00 00 00 00-00 00 00 00 00 00 00 00 ................
00:00:19.893 03dfcdf0 0df0: 00 00 00 00 00 00 00 00-00 00 00 00 00 00 00 00 ................
00:00:19.893 03dfce00 0e00: 00 00 00 00 00 00 00 00-00 00 00 00 00 00 00 00 ................
00:00:19.893 03dfce10 0e10: 00 00 00 00 00 00 00 00-00 00 00 00 00 00 00 00 ................
00:00:19.893 03dfce20 0e20: 00 00 00 00 00 00 00 00-00 00 00 00 00 00 00 00 ................
00:00:19.893 03dfce30 0e30: 00 00 00 00 00 00 00 00-00 00 00 00 00 00 00 00 ................
00:00:19.893 03dfce40 0e40: 00 00 00 00 00 00 00 00-00 00 00 00 00 00 00 00 ................
00:00:19.893 03dfce50 0e50: 00 00 00 00 00 00 00 00-00 00 00 00 00 00 00 00 ................
00:00:19.893 03dfce60 0e60: 00 00 00 00 00 00 00 00-00 00 00 00 00 00 00 00 ................
00:00:19.893 03dfce70 0e70: 00 00 00 00 00 00 00 00-00 00 00 00 00 00 00 00 ................
00:00:19.893 03dfce80 0e80: 00 00 00 00 00 00 00 00-00 00 00 00 00 00 00 00 ................
00:00:19.893 03dfce90 0e90: 00 00 00 00 00 00 00 00-00 00 00 00 00 00 00 00 ................
00:00:19.893 03dfcea0 0ea0: 00 00 00 00 00 00 00 00-00 00 00 00 00 00 00 00 ................
00:00:19.893 03dfceb0 0eb0: 00 00 00 00 00 00 00 00-00 00 00 00 00 00 00 00 ................
00:00:19.893 03dfcec0 0ec0: 00 00 00 00 00 00 00 00-00 00 00 00 00 00 00 00 ................
00:00:19.893 03dfced0 0ed0: 00 00 00 00 00 00 00 00-00 00 00 00 00 00 00 00 ................
00:00:19.893 03dfcee0 0ee0: 00 00 00 00 00 00 00 00-00 00 00 00 00 00 00 00 ................
00:00:19.893 03dfcef0 0ef0: 00 00 00 00 00 00 00 00-00 00 00 00 00 00 00 00 ................
00:00:19.893 03dfcf00 0f00: 00 00 00 00 00 00 00 00-00 00 00 00 00 00 00 00 ................
00:00:19.893 03dfcf10 0f10: 00 00 00 00 00 00 00 00-00 00 00 00 00 00 00 00 ................
00:00:19.893 03dfcf20 0f20: 00 00 00 00 00 00 00 00-00 00 00 00 00 00 00 00 ................
00:00:19.893 03dfcf30 0f30: 00 00 00 00 00 00 00 00-00 00 00 00 00 00 00 00 ................
00:00:19.893 03dfcf40 0f40: 00 00 00 00 00 00 00 00-00 00 00 00 00 00 00 00 ................
00:00:19.893 03dfcf50 0f50: 00 00 00 00 00 00 00 00-00 00 00 00 00 00 00 00 ................
00:00:19.893 03dfcf60 0f60: 00 00 00 00 00 00 00 00-00 00 00 00 00 00 00 00 ................
00:00:19.893 03dfcf70 0f70: 00 00 00 00 00 00 00 00-00 00 00 00 00 00 00 00 ................
00:00:19.893 03dfcf80 0f80: 00 00 00 00 00 00 00 00-00 00 00 00 00 00 00 00 ................
00:00:19.893 03dfcf90 0f90: 00 00 00 00 00 00 00 00-00 00 00 00 00 00 00 00 ................
00:00:19.893 03dfcfa0 0fa0: 00 00 00 00 00 00 00 00-00 00 00 00 00 00 00 00 ................
00:00:19.893 03dfcfb0 0fb0: 00 00 00 00 00 00 00 00-00 00 00 00 00 00 00 00 ................
00:00:19.893 03dfcfc0 0fc0: 00 00 00 00 00 00 00 00-00 00 00 00 00 00 00 00 ................
00:00:19.893 03dfcfd0 0fd0: 00 00 00 00 00 00 00 00-00 00 00 00 00 00 00 00 ................
00:00:19.893 03dfcfe0 0fe0: 00 00 00 00 00 00 00 00-00 00 00 00 00 00 00 00 ................
00:00:19.893 03dfcff0 0ff0: 00 00 00 00 00 00 00 00-00 00 00 00 00 00 00 00 ................
00:00:19.893 03dfd000 1000: 00 00 00 00 00 00 00 00-00 00 00 00 00 00 00 00 ................
00:00:19.893 03dfd010 1010: 00 00 00 00 00 00 00 00-00 00 00 00 00 00 00 00 ................
00:00:19.893 03dfd020 1020: 00 00 00 00 00 00 00 00-00 00 00 00 00 00 00 00 ................
00:00:19.893 03dfd030 1030: 00 00 00 00 00 00 00 00-00 00 00 00 00 00 00 00 ................
00:00:19.893 03dfd040 1040: 00 00 00 00 00 00 00 00-00 00 00 00 00 00 00 00 ................
00:00:19.893 03dfd050 1050: 00 00 00 00 00 00 00 00-00 00 00 00 00 00 00 00 ................
00:00:19.893 03dfd060 1060: 00 00 00 00 00 00 00 00-00 00 00 00 00 00 00 00 ................
00:00:19.893 03dfd070 1070: 00 00 00 00 00 00 00 00-00 00 00 00 00 00 00 00 ................
00:00:19.893 03dfd080 1080: 00 00 00 00 00 00 00 00-00 00 00 00 00 00 00 00 ................
00:00:19.893 03dfd090 1090: 00 00 00 00 00 00 00 00-00 00 00 00 00 00 00 00 ................
00:00:19.893 03dfd0a0 10a0: 00 00 00 00 00 00 00 00-00 00 00 00 00 00 00 00 ................
00:00:19.893 03dfd0b0 10b0: 00 00 00 00 00 00 00 00-00 00 00 00 00 00 00 00 ................
00:00:19.893 03dfd0c0 10c0: 00 00 00 00 00 00 00 00-00 00 00 00 00 00 00 00 ................
00:00:19.893 03dfd0d0 10d0: 00 00 00 00 00 00 00 00-00 00 00 00 00 00 00 00 ................
00:00:19.893 03dfd0e0 10e0: 00 00 00 00 00 00 00 00-00 00 00 00 00 00 00 00 ................
00:00:19.893 03dfd0f0 10f0: 00 00 00 00 00 00 00 00-00 00 00 00 00 00 00 00 ................
00:00:19.893 03dfd100 1100: 00 00 00 00 00 00 00 00-00 00 00 00 00 00 00 00 ................
00:00:19.893 03dfd110 1110: 00 00 00 00 00 00 00 00-00 00 00 00 00 00 00 00 ................
00:00:19.893 03dfd120 1120: 00 00 00 00 00 00 00 00-00 00 00 00 00 00 00 00 ................
00:00:19.893 03dfd130 1130: 00 00 00 00 00 00 00 00-00 00 00 00 00 00 00 00 ................
00:00:19.893 03dfd140 1140: 00 00 00 00 00 00 00 00-00 00 00 00 00 00 00 00 ................
00:00:19.893 03dfd150 1150: 00 00 00 00 00 00 00 00-00 00 00 00 00 00 00 00 ................
00:00:19.893 03dfd160 1160: 00 00 00 00 00 00 00 00-00 00 00 00 00 00 00 00 ................
00:00:19.893 03dfd170 1170: 00 00 00 00 00 00 00 00-00 00 00 00 00 00 00 00 ................
00:00:19.893 03dfd180 1180: 00 00 00 00 00 00 00 00-00 00 00 00 00 00 00 00 ................
00:00:19.893 03dfd190 1190: 00 00 00 00 00 00 00 00-00 00 00 00 00 00 00 00 ................
00:00:19.893 03dfd1a0 11a0: 00 00 00 00 00 00 00 00-00 00 00 00 00 00 00 00 ................
00:00:19.893 03dfd1b0 11b0: 00 00 00 00 00 00 00 00-00 00 00 00 00 00 00 00 ................
00:00:19.893 03dfd1c0 11c0: 00 00 00 00 00 00 00 00-00 00 00 00 00 00 00 00 ................
00:00:19.893 03dfd1d0 11d0: 00 00 00 00 00 00 00 00-00 00 00 00 00 00 00 00 ................
00:00:19.893 03dfd1e0 11e0: 00 00 00 00 00 00 00 00-00 00 00 00 00 00 00 00 ................
00:00:19.893 03dfd1f0 11f0: 00 00 00 00 00 00 00 00-00 00 00 00 00 00 00 00 ................
00:00:19.893 03dfd200 1200: 00 00 00 00 00 00 00 00-00 00 00 00 00 00 00 00 ................
00:00:19.893 03dfd210 1210: 00 00 00 00 00 00 00 00-00 00 00 00 00 00 00 00 ................
00:00:19.893 03dfd220 1220: 00 00 00 00 00 00 00 00-00 00 00 00 00 00 00 00 ................
rest in next post...
awilson
Posts: 6
Joined: 9. Apr 2011, 07:18
Primary OS: MS Windows 7
VBox Version: OSE self-compiled
Guest OSses: Linux

Re: Building VirtualBox OSE 32 bit (SVN) with VS2010

Post by awilson »

Code: Select all

00:00:19.894 03dfd230 1230: 00 00 00 00 00 00 00 00-00 00 00 00 00 00 00 00 ................
00:00:19.894 03dfd240 1240: 00 00 00 00 00 00 00 00-00 00 00 00 00 00 00 00 ................
00:00:19.894 03dfd250 1250: 00 00 00 00 00 00 00 00-00 00 00 00 00 00 00 00 ................
00:00:19.894 03dfd260 1260: 00 00 00 00 00 00 00 00-00 00 00 00 00 00 00 00 ................
00:00:19.894 03dfd270 1270: 00 00 00 00 00 00 00 00-00 00 00 00 00 00 00 00 ................
00:00:19.894 03dfd280 1280: 00 00 00 00 00 00 00 00-00 00 00 00 00 00 00 00 ................
00:00:19.894 03dfd290 1290: 00 00 00 00 00 00 00 00-00 00 00 00 00 00 00 00 ................
00:00:19.894 03dfd2a0 12a0: 00 00 00 00 00 00 00 00-00 00 00 00 00 00 00 00 ................
00:00:19.894 03dfd2b0 12b0: 00 00 00 00 00 00 00 00-00 00 00 00 00 00 00 00 ................
00:00:19.894 03dfd2c0 12c0: 00 00 00 00 00 00 00 00-00 00 00 00 00 00 00 00 ................
00:00:19.894 03dfd2d0 12d0: 00 00 00 00 00 00 00 00-00 00 00 00 00 00 00 00 ................
00:00:19.894 03dfd2e0 12e0: 00 00 00 00 00 00 00 00-00 00 00 00 00 00 00 00 ................
00:00:19.894 03dfd2f0 12f0: 00 00 00 00 00 00 00 00-00 00 00 00 00 00 00 00 ................
00:00:19.894 03dfd300 1300: 00 00 00 00 00 00 00 00-00 00 00 00 00 00 00 00 ................
00:00:19.894 03dfd310 1310: 00 00 00 00 00 00 00 00-00 00 00 00 00 00 00 00 ................
00:00:19.894 03dfd320 1320: 00 00 00 00 00 00 00 00-00 00 00 00 00 00 00 00 ................
00:00:19.894 03dfd330 1330: 00 00 00 00 00 00 00 00-00 00 00 00 00 00 00 00 ................
00:00:19.894 03dfd340 1340: 00 00 00 00 00 00 00 00-00 00 00 00 00 00 00 00 ................
00:00:19.894 03dfd350 1350: 00 00 00 00 00 00 00 00-00 00 00 00 00 00 00 00 ................
00:00:19.894 03dfd360 1360: 00 00 00 00 00 00 00 00-00 00 00 00 00 00 00 00 ................
00:00:19.894 03dfd370 1370: 00 00 00 00 00 00 00 00-00 00 00 00 00 00 00 00 ................
00:00:19.894 03dfd380 1380: 00 00 00 00 00 00 00 00-00 00 00 00 00 00 00 00 ................
00:00:19.894 03dfd390 1390: 00 00 00 00 00 00 00 00-00 00 00 00 00 00 00 00 ................
00:00:19.894 03dfd3a0 13a0: 00 00 00 00 00 00 00 00-00 00 00 00 00 00 00 00 ................
00:00:19.894 03dfd3b0 13b0: 00 00 00 00 00 00 00 00-00 00 00 00 00 00 00 00 ................
00:00:19.894 03dfd3c0 13c0: 00 00 00 00 00 00 00 00-00 00 00 00 00 00 00 00 ................
00:00:19.894 03dfd3d0 13d0: 00 00 00 00 00 00 00 00-00 00 00 00 00 00 00 00 ................
00:00:19.894 03dfd3e0 13e0: 00 00 00 00 00 00 00 00-00 00 00 00 00 00 00 00 ................
00:00:19.894 03dfd3f0 13f0: 00 00 00 00 00 00 00 00-00 00 00 00 00 00 00 00 ................
00:00:19.894 03dfd400 1400: 00 00 00 00 00 00 00 00-00 00 00 00 00 00 00 00 ................
00:00:19.894 03dfd410 1410: 00 00 00 00 00 00 00 00-00 00 00 00 00 00 00 00 ................
00:00:19.894 03dfd420 1420: 00 00 00 00 00 00 00 00-00 00 00 00 00 00 00 00 ................
00:00:19.894 03dfd430 1430: 00 00 00 00 00 00 00 00-00 00 00 00 00 00 00 00 ................
00:00:19.894 03dfd440 1440: 00 00 00 00 00 00 00 00-00 00 00 00 00 00 00 00 ................
00:00:19.894 03dfd450 1450: 00 00 00 00 00 00 00 00-00 00 00 00 00 00 00 00 ................
00:00:19.894 03dfd460 1460: 00 00 00 00 00 00 00 00-00 00 00 00 00 00 00 00 ................
00:00:19.894 03dfd470 1470: 00 00 00 00 00 00 00 00-00 00 00 00 00 00 00 00 ................
00:00:19.894 03dfd480 1480: 00 00 00 00 00 00 00 00-00 00 00 00 00 00 00 00 ................
00:00:19.894 03dfd490 1490: 00 00 00 00 00 00 00 00-00 00 00 00 00 00 00 00 ................
00:00:19.894 03dfd4a0 14a0: 00 00 00 00 00 00 00 00-00 00 00 00 00 00 00 00 ................
00:00:19.894 03dfd4b0 14b0: 00 00 00 00 00 00 00 00-00 00 00 00 00 00 00 00 ................
00:00:19.894 03dfd4c0 14c0: 00 00 00 00 00 00 00 00-00 00 00 00 00 00 00 00 ................
00:00:19.894 03dfd4d0 14d0: 00 00 00 00 00 00 00 00-00 00 00 00 00 00 00 00 ................
00:00:19.894 03dfd4e0 14e0: 00 00 00 00 00 00 00 00-00 00 00 00 00 00 00 00 ................
00:00:19.894 03dfd4f0 14f0: 00 00 00 00 00 00 00 00-00 00 00 00 00 00 00 00 ................
00:00:19.894 03dfd500 1500: 00 00 00 00 00 00 00 00-00 00 00 00 00 00 00 00 ................
00:00:19.894 03dfd510 1510: 00 00 00 00 00 00 00 00-00 00 00 00 00 00 00 00 ................
00:00:19.894 03dfd520 1520: 00 00 00 00 00 00 00 00-00 00 00 00 00 00 00 00 ................
00:00:19.894 03dfd530 1530: 00 00 00 00 00 00 00 00-00 00 00 00 00 00 00 00 ................
00:00:19.894 03dfd540 1540: 00 00 00 00 00 00 00 00-00 00 00 00 00 00 00 00 ................
00:00:19.894 03dfd550 1550: 00 00 00 00 00 00 00 00-00 00 00 00 00 00 00 00 ................
00:00:19.894 03dfd560 1560: 00 00 00 00 00 00 00 00-00 00 00 00 00 00 00 00 ................
00:00:19.894 03dfd570 1570: 00 00 00 00 00 00 00 00-00 00 00 00 00 00 00 00 ................
00:00:19.894 03dfd580 1580: 00 00 00 00 00 00 00 00-00 00 00 00 00 00 00 00 ................
00:00:19.895 03dfd590 1590: 00 00 00 00 00 00 00 00-00 00 00 00 00 00 00 00 ................
00:00:19.895 03dfd5a0 15a0: 00 00 00 00 00 00 00 00-00 00 00 00 00 00 00 00 ................
00:00:19.895 03dfd5b0 15b0: 00 00 00 00 00 00 00 00-00 00 00 00 00 00 00 00 ................
00:00:19.895 03dfd5c0 15c0: 00 00 00 00 00 00 00 00-00 00 00 00 00 00 00 00 ................
00:00:19.895 03dfd5d0 15d0: 00 00 00 00 00 00 00 00-00 00 00 00 00 00 00 00 ................
00:00:19.895 03dfd5e0 15e0: 00 00 00 00 00 00 00 00-00 00 00 00 00 00 00 00 ................
00:00:19.895 03dfd5f0 15f0: 00 00 00 00 00 00 00 00-00 00 00 00 00 00 00 00 ................
00:00:19.895 03dfd600 1600: 00 00 00 00 00 00 00 00-00 00 00 00 00 00 00 00 ................
00:00:19.895 03dfd610 1610: 00 00 00 00 00 00 00 00-00 00 00 00 00 00 00 00 ................
00:00:19.895 03dfd620 1620: 00 00 00 00 00 00 00 00-00 00 00 00 00 00 00 00 ................
00:00:19.895 03dfd630 1630: 00 00 00 00 00 00 00 00-00 00 00 00 00 00 00 00 ................
00:00:19.895 03dfd640 1640: 00 00 00 00 00 00 00 00-00 00 00 00 00 00 00 00 ................
00:00:19.895 03dfd650 1650: 00 00 00 00 00 00 00 00-00 00 00 00 00 00 00 00 ................
00:00:19.895 03dfd660 1660: 00 00 00 00 00 00 00 00-00 00 00 00 00 00 00 00 ................
00:00:19.895 03dfd670 1670: 00 00 00 00 00 00 00 00-00 00 00 00 00 00 00 00 ................
00:00:19.895 03dfd680 1680: 00 00 00 00 00 00 00 00-00 00 00 00 00 00 00 00 ................
00:00:19.895 03dfd690 1690: 00 00 00 00 00 00 00 00-00 00 00 00 00 00 00 00 ................
00:00:19.895 03dfd6a0 16a0: 00 00 00 00 00 00 00 00-00 00 00 00 00 00 00 00 ................
00:00:19.895 03dfd6b0 16b0: 00 00 00 00 00 00 00 00-00 00 00 00 00 00 00 00 ................
00:00:19.895 03dfd6c0 16c0: 00 00 00 00 00 00 00 00-00 00 00 00 00 00 00 00 ................
00:00:19.895 03dfd6d0 16d0: 00 00 00 00 00 00 00 00-00 00 00 00 00 00 00 00 ................
00:00:19.895 03dfd6e0 16e0: 00 00 00 00 00 00 00 00-00 00 00 00 00 00 00 00 ................
00:00:19.895 03dfd6f0 16f0: 00 00 00 00 00 00 00 00-00 00 00 00 00 00 00 00 ................
00:00:19.895 03dfd700 1700: 00 00 00 00 00 00 00 00-00 00 00 00 00 00 00 00 ................
00:00:19.895 03dfd710 1710: 00 00 00 00 00 00 00 00-00 00 00 00 00 00 00 00 ................
00:00:19.895 03dfd720 1720: 00 00 00 00 00 00 00 00-00 00 00 00 00 00 00 00 ................
00:00:19.895 03dfd730 1730: 00 00 00 00 00 00 00 00-00 00 00 00 00 00 00 00 ................
00:00:19.895 03dfd740 1740: 00 00 00 00 00 00 00 00-00 00 00 00 00 00 00 00 ................
00:00:19.895 03dfd750 1750: 00 00 00 00 00 00 00 00-00 00 00 00 00 00 00 00 ................
00:00:19.895 03dfd760 1760: 00 00 00 00 00 00 00 00-00 00 00 00 00 00 00 00 ................
00:00:19.895 03dfd770 1770: 00 00 00 00 00 00 00 00-00 00 00 00 00 00 00 00 ................
00:00:19.895 03dfd780 1780: 00 00 00 00 00 00 00 00-00 00 00 00 00 00 00 00 ................
00:00:19.895 03dfd790 1790: 00 00 00 00 00 00 00 00-00 00 00 00 00 00 00 00 ................
00:00:19.895 03dfd7a0 17a0: 00 00 00 00 00 00 00 00-00 00 00 00 00 00 00 00 ................
00:00:19.895 03dfd7b0 17b0: 00 00 00 00 00 00 00 00-00 00 00 00 00 00 00 00 ................
00:00:19.895 03dfd7c0 17c0: 00 00 00 00 00 00 00 00-00 00 00 00 00 00 00 00 ................
00:00:19.895 03dfd7d0 17d0: 00 00 00 00 00 00 00 00-00 00 00 00 00 00 00 00 ................
00:00:19.895 03dfd7e0 17e0: 00 00 00 00 00 00 00 00-00 00 00 00 00 00 00 00 ................
00:00:19.895 03dfd7f0 17f0: 00 00 00 00 00 00 00 00-00 00 00 00 00 00 00 00 ................
00:00:19.895 03dfd800 1800: 00 00 00 00 00 00 00 00-00 00 00 00 00 00 00 00 ................
00:00:19.895 03dfd810 1810: 00 00 00 00 00 00 00 00-00 00 00 00 00 00 00 00 ................
00:00:19.895 03dfd820 1820: 00 00 00 00 00 00 00 00-00 00 00 00 00 00 00 00 ................
00:00:19.895 03dfd830 1830: 00 00 00 00 00 00 00 00-00 00 00 00 00 00 00 00 ................
00:00:19.895 03dfd840 1840: 00 00 00 00 00 00 00 00-00 00 00 00 00 00 00 00 ................
00:00:19.895 03dfd850 1850: 00 00 00 00 00 00 00 00-00 00 00 00 00 00 00 00 ................
00:00:19.895 03dfd860 1860: 00 00 00 00 00 00 00 00-00 00 00 00 00 00 00 00 ................
00:00:19.895 03dfd870 1870: 00 00 00 00 00 00 00 00-00 00 00 00 00 00 00 00 ................
00:00:19.895 03dfd880 1880: 00 00 00 00 00 00 00 00-00 00 00 00 00 00 00 00 ................
00:00:19.895 03dfd890 1890: 00 00 00 00 00 00 00 00-00 00 00 00 00 00 00 00 ................
00:00:19.895 03dfd8a0 18a0: 00 00 00 00 00 00 00 00-00 00 00 00 00 00 00 00 ................
00:00:19.895 03dfd8b0 18b0: 00 00 00 00 00 00 00 00-00 00 00 00 00 00 00 00 ................
00:00:19.895 03dfd8c0 18c0: 00 00 00 00 00 00 00 00-00 00 00 00 00 00 00 00 ................
00:00:19.895 03dfd8d0 18d0: 00 00 00 00 00 00 00 00-00 00 00 00 00 00 00 00 ................
00:00:19.895 03dfd8e0 18e0: 00 00 00 00 00 00 00 00-00 00 00 00 00 00 00 00 ................
00:00:19.895 03dfd8f0 18f0: 00 00 00 00 00 00 00 00-00 00 00 00 00 00 00 00 ................
00:00:19.895 03dfd900 1900: 00 00 00 00 00 00 00 00-00 00 00 00 00 00 00 00 ................
00:00:19.895 03dfd910 1910: 00 00 00 00 00 00 00 00-00 00 00 00 00 00 00 00 ................
00:00:19.895 03dfd920 1920: 00 00 00 00 00 00 00 00-00 00 00 00 00 00 00 00 ................
00:00:19.895 03dfd930 1930: 00 00 00 00 00 00 00 00-00 00 00 00 00 00 00 00 ................
00:00:19.895 03dfd940 1940: 00 00 00 00 00 00 00 00-00 00 00 00 00 00 00 00 ................
00:00:19.895 03dfd950 1950: 00 00 00 00 00 00 00 00-00 00 00 00 00 00 00 00 ................
00:00:19.895 03dfd960 1960: 00 00 00 00 00 00 00 00-00 00 00 00 00 00 00 00 ................
00:00:19.895 03dfd970 1970: 00 00 00 00 00 00 00 00-00 00 00 00 00 00 00 00 ................
00:00:19.895 03dfd980 1980: 00 00 00 00 00 00 00 00-00 00 00 00 00 00 00 00 ................
00:00:19.895 03dfd990 1990: 00 00 00 00 00 00 00 00-00 00 00 00 00 00 00 00 ................
00:00:19.895 03dfd9a0 19a0: 00 00 00 00 00 00 00 00-00 00 00 00 00 00 00 00 ................
00:00:19.895 03dfd9b0 19b0: 00 00 00 00 00 00 00 00-00 00 00 00 00 00 00 00 ................
00:00:19.896 03dfd9c0 19c0: 00 00 00 00 00 00 00 00-00 00 00 00 00 00 00 00 ................
00:00:19.896 03dfd9d0 19d0: 00 00 00 00 00 00 00 00-00 00 00 00 00 00 00 00 ................
00:00:19.896 03dfd9e0 19e0: 00 00 00 00 00 00 00 00-00 00 00 00 00 00 00 00 ................
00:00:19.896 03dfd9f0 19f0: 00 00 00 00 00 00 00 00-00 00 00 00 00 00 00 00 ................
00:00:19.896 03dfda00 1a00: 00 00 00 00 00 00 00 00-00 00 00 00 00 00 00 00 ................
00:00:19.896 03dfda10 1a10: 00 00 00 00 00 00 00 00-00 00 00 00 00 00 00 00 ................
00:00:19.896 03dfda20 1a20: 00 00 00 00 00 00 00 00-00 00 00 00 00 00 00 00 ................
00:00:19.896 03dfda30 1a30: 00 00 00 00 00 00 00 00-00 00 00 00 00 00 00 00 ................
00:00:19.896 03dfda40 1a40: 00 00 00 00 00 00 00 00-00 00 00 00 00 00 00 00 ................
00:00:19.896 03dfda50 1a50: 00 00 00 00 00 00 00 00-00 00 00 00 00 00 00 00 ................
00:00:19.896 03dfda60 1a60: 00 00 00 00 00 00 00 00-00 00 00 00 00 00 00 00 ................
00:00:19.896 03dfda70 1a70: 00 00 00 00 00 00 00 00-00 00 00 00 00 00 00 00 ................
00:00:19.896 03dfda80 1a80: 00 00 00 00 00 00 00 00-00 00 00 00 00 00 00 00 ................
00:00:19.896 03dfda90 1a90: 00 00 00 00 00 00 00 00-00 00 00 00 00 00 00 00 ................
00:00:19.896 03dfdaa0 1aa0: 00 00 00 00 00 00 00 00-00 00 00 00 00 00 00 00 ................
00:00:19.896 03dfdab0 1ab0: 00 00 00 00 00 00 00 00-00 00 00 00 00 00 00 00 ................
00:00:19.896 03dfdac0 1ac0: 00 00 00 00 00 00 00 00-00 00 00 00 00 00 00 00 ................
00:00:19.896 03dfdad0 1ad0: 00 00 00 00 00 00 00 00-00 00 00 00 00 00 00 00 ................
00:00:19.896 03dfdae0 1ae0: 00 00 00 00 00 00 00 00-00 00 00 00 00 00 00 00 ................
00:00:19.896 03dfdaf0 1af0: 00 00 00 00 00 00 00 00-00 00 00 00 00 00 00 00 ................
00:00:19.896 03dfdb00 1b00: 00 00 00 00 00 00 00 00-00 00 00 00 00 00 00 00 ................
00:00:19.896 03dfdb10 1b10: 00 00 00 00 00 00 00 00-00 00 00 00 00 00 00 00 ................
00:00:19.896 03dfdb20 1b20: 00 00 00 00 00 00 00 00-00 00 00 00 00 00 00 00 ................
00:00:19.896 03dfdb30 1b30: 00 00 00 00 00 00 00 00-00 00 00 00 00 00 00 00 ................
00:00:19.896 03dfdb40 1b40: 00 00 00 00 00 00 00 00-00 00 00 00 00 00 00 00 ................
00:00:19.896 03dfdb50 1b50: 00 00 00 00 00 00 00 00-00 00 00 00 00 00 00 00 ................
00:00:19.896 03dfdb60 1b60: 00 00 00 00 00 00 00 00-00 00 00 00 00 00 00 00 ................
00:00:19.896 03dfdb70 1b70: 00 00 00 00 00 00 00 00-00 00 00 00 00 00 00 00 ................
00:00:19.896 03dfdb80 1b80: 00 00 00 00 00 00 00 00-00 00 00 00 00 00 00 00 ................
00:00:19.896 03dfdb90 1b90: 00 00 00 00 00 00 00 00-00 00 00 00 00 00 00 00 ................
00:00:19.896 03dfdba0 1ba0: 00 00 00 00 00 00 00 00-00 00 00 00 00 00 00 00 ................
00:00:19.896 03dfdbb0 1bb0: 00 00 00 00 00 00 00 00-00 00 00 00 00 00 00 00 ................
00:00:19.896 03dfdbc0 1bc0: 00 00 00 00 00 00 00 00-00 00 00 00 00 00 00 00 ................
00:00:19.896 03dfdbd0 1bd0: 00 00 00 00 00 00 00 00-00 00 00 00 00 00 00 00 ................
00:00:19.896 03dfdbe0 1be0: 00 00 00 00 00 00 00 00-00 00 00 00 00 00 00 00 ................
00:00:19.896 03dfdbf0 1bf0: 00 00 00 00 00 00 00 00-00 00 00 00 00 00 00 00 ................
00:00:19.896 03dfdc00 1c00: 00 00 00 00 00 00 00 00-00 00 00 00 00 00 00 00 ................
00:00:19.896 03dfdc10 1c10: 00 00 00 00 00 00 00 00-00 00 00 00 00 00 00 00 ................
00:00:19.896 03dfdc20 1c20: 00 00 00 00 00 00 00 00-00 00 00 00 00 00 00 00 ................
00:00:19.896 03dfdc30 1c30: 00 00 00 00 00 00 00 00-00 00 00 00 00 00 00 00 ................
00:00:19.896 03dfdc40 1c40: 00 00 00 00 00 00 00 00-00 00 00 00 00 00 00 00 ................
00:00:19.896 03dfdc50 1c50: 00 00 00 00 00 00 00 00-00 00 00 00 00 00 00 00 ................
00:00:19.896 03dfdc60 1c60: 00 00 00 00 00 00 00 00-00 00 00 00 00 00 00 00 ................
00:00:19.896 03dfdc70 1c70: 00 00 00 00 8c ec d5 fe-d5 2a 0e ff 00 10 c0 fe .........*......
00:00:19.896 03dfdc80 1c80: c0 ec d5 fe 88 ec d5 fe-c0 dc 13 00 b0 ec d5 fe ................
00:00:19.896 03dfdc90 1c90: f4 a4 0d ff c0 6b c0 fe-0e 00 00 00 b0 ec d5 fe .....k..........
00:00:19.896 03dfdca0 1ca0: 6d 5d 0d ff 00 10 c0 fe-c0 ec d5 fe 70 98 3b c0 m]..........p.;.
00:00:19.896 03dfdcb0 1cb0: ec ed d5 fe 28 64 0d ff-9d f6 ff ff de 64 0d ff ....(d.......d..
00:00:19.896 03dfdcc0 1cc0: 70 98 3b c0 00 00 00 00-0c ee d5 fe 00 00 00 00 p.;.............
00:00:19.896 03dfdcd0 1cd0: ec ed d5 fe 00 00 00 00-e4 3e 21 ff 00 00 00 00 .........>!.....
00:00:19.896 03dfdce0 1ce0: 00 00 00 00 00 00 00 00-00 30 21 ff 00 00 00 00 .........0!.....
00:00:19.896 03dfdcf0 1cf0: b9 03 00 00 00 00 00 00-e4 ed d5 fe 00 00 00 00 ................
00:00:19.896 03dfdd00 1d00: 00 00 00 00 f0 ff 00 00-e0 00 00 00 d8 00 00 00 ................
00:00:19.896 03dfdd10 1d10: f0 ff 00 00 f0 ff 00 00-f8 ff 00 00 c0 bc c4 fe ................
00:00:19.896 03dfdd20 1d20: 02 00 01 00 a0 bc c4 fe-7c d6 0e ff 00 00 00 00 ........|.......
00:00:19.896 03dfdd30 1d30: 61 20 96 39 00 00 00 00-04 00 00 00 6c ed d5 fe a .9........l...
00:00:19.896 03dfdd40 1d40: f6 92 0d ff a0 bc c4 fe-00 40 fd 05 00 e0 00 00 .........@......
00:00:19.896 03dfdd50 1d50: 04 00 00 00 6b ed d5 fe-00 e0 00 00 10 f0 c1 fe ....k...........
00:00:19.896 03dfdd60 1d60: 00 00 00 00 9c ed d5 fe-00 00 00 01 a4 ed d5 fe ................
00:00:19.896 03dfdd70 1d70: d8 9f 0d ff a0 bc c4 fe-00 40 fd 05 00 e0 00 00 .........@......
00:00:19.896 03dfdd80 1d80: 00 00 00 00 00 c0 c1 fe-9c ed d5 fe 0e 00 00 00 ................
00:00:19.896 03dfdd90 1d90: 38 ee d5 fe 00 00 00 00-a0 bc c4 fe 00 30 21 ff 8............0!.
00:00:19.896 03dfdda0 1da0: ff ff ff ff c8 ed d5 fe-f9 73 0e ff 10 f0 c1 fe .........s......
00:00:19.896 03dfddb0 1db0: 00 40 fd 05 00 e0 00 00-38 ee d5 fe 70 98 3b c0 .@......8...p.;.
00:00:19.896 03dfddc0 1dc0: 0c ee d5 fe 00 00 00 00-ec ed d5 fe 5c d6 0e ff ............\...
00:00:19.896 03dfddd0 1dd0: 0e 00 00 00 09 00 00 00-7c d6 0e ff f8 ff 00 00 ........|.......
00:00:19.896 03dfdde0 1de0: 02 00 01 00 70 98 3b c0-00 00 00 00 68 ee d5 fe ....p.;.....h...
00:00:19.896 03dfddf0 1df0: 39 f2 0e ff 00 c0 c1 fe-70 98 3b c0 00 00 00 00 9.......p.;.....
00:00:19.896 03dfde00 1e00: 00 10 c0 fe 00 c0 c1 fe-00 10 c0 fe 70 98 3b c0 ............p.;.
00:00:19.897 03dfde10 1e10: 00 00 00 00 00 00 00 00-00 00 00 00 00 00 00 00 ................
00:00:19.897 03dfde20 1e20: 00 00 00 00 00 00 00 00-00 00 00 00 00 20 d6 fe ............. ..
00:00:19.897 03dfde30 1e30: 00 2c d6 fe 67 a0 8d 00-00 30 21 ff e4 3e 21 ff .,..g....0!..>!.
00:00:19.897 03dfde40 1e40: 00 00 00 00 00 00 00 00-00 00 00 00 00 00 00 00 ................
00:00:19.897 03dfde50 1e50: 00 00 00 00 00 c0 7c 00-00 00 00 00 00 00 00 00 ......|.........
00:00:19.897 03dfde60 1e60: 00 9d da fe 00 10 c0 fe-94 ee d5 fe 90 cb 0e ff ................
00:00:19.897 03dfde70 1e70: 00 c0 c1 fe 10 00 00 00-00 00 00 00 d4 ee d5 fe ................
00:00:19.897 03dfde80 1e80: 70 98 3b c0 00 00 00 00-9f ee d5 fe 00 10 76 c0 p.;...........v.
00:00:19.897 03dfde90 1e90: 00 c0 c1 fe c4 ee d5 fe-bc 5b 0d ff 00 c0 c1 00 .........[......
00:00:19.897 03dfdea0 1ea0: 10 00 00 00 00 00 00 00-d4 ee d5 fe 70 98 3b c0 ............p.;.
00:00:19.897 03dfdeb0 1eb0: 00 00 00 00 00 c0 c1 fe-00 10 76 c0 00 00 00 00 ..........v.....
00:00:19.897 03dfdec0 1ec0: cc 58 82 c0 b0 ff 75 c0-5f 62 0d ff c0 e9 c1 fe .X....u._b......
00:00:19.897 03dfded0 1ed0: d4 ee d5 fe 00 10 76 c0-00 00 00 00 00 00 00 00 ......v.........
00:00:19.897 03dfdee0 1ee0: 00 00 00 00 b0 ff 75 c0-00 00 00 00 46 00 00 00 ......u.....F...
00:00:19.897 03dfdef0 1ef0: 00 00 00 00 cc 58 82 c0-00 00 00 00 00 00 00 00 .....X..........
00:00:19.897 03dfdf00 1f00: 00 00 00 00 fd ed a0 4d-00 00 00 00 a8 ff 75 c0 .......M......u.
00:00:19.897 03dfdf10 1f10: 00 00 00 00 00 00 00 00-69 00 00 00 e0 00 00 00 ........i.......
00:00:19.897 03dfdf20 1f20: d8 00 00 00 7b 00 00 00-7b 00 00 00 61 00 00 00 ....{...{...a...
00:00:19.897 03dfdf30 1f30: 00 00 00 00 46 02 01 00-00 00 00 00 70 98 3b c0 ....F.......p.;.
00:00:19.897 03dfdf40 1f40: 00 00 00 00 cc ef 55 ff-00 00 00 00 00 00 00 00 ......U.........
00:00:19.897 03dfdf50 1f50: 00 00 00 00 00 00 00 00-00 00 00 00 00 00 00 00 ................
00:00:19.897 03dfdf60 1f60: 00 00 00 00 00 00 00 00-90 bc 44 ff 88 ef 55 ff ..........D...U.
00:00:19.897 03dfdf70 1f70: ea 33 8e ff 00 10 42 ff-00 00 00 00 00 00 00 00 .3....B.........
00:00:19.897 03dfdf80 1f80: 00 10 40 ff a0 ef 55 ff-ca 34 8e ff 30 03 00 00 ..@...U..4..0...
00:00:19.897 03dfdf90 1f90: 00 10 40 ff ff ff ff ff-6d 8f 8d ff 20 f6 41 ff ..@.....m... .A.
00:00:19.897 03dfdfa0 1fa0: ff 00 00 00 80 00 00 00-f0 c0 55 ff 00 10 40 ff ..........U...@.
00:00:19.897 03dfdfb0 1fb0: 00 00 00 00 97 90 8d ff-14 00 00 00 40 13 40 ff ............@.@.
00:00:19.897 03dfdfc0 1fc0: 00 00 00 00 80 00 00 00-40 00 00 00 a0 bc 44 ff ........@.....D.
00:00:19.897 03dfdfd0 1fd0: e4 ef 55 ff 01 85 8d ff-00 10 40 ff 14 00 00 00 ..U.......@.....
00:00:19.897 03dfdfe0 1fe0: 00 00 00 00 0e 00 00 00-10 00 00 00 70 98 3b c0 ............p.;.
00:00:19.897 03dfdff0 1ff0: 61 00 00 00 46 02 01 00-a8 ff 75 c0 69 00 00 00 a...F.....u.i...
00:00:19.901 !!
00:00:19.901 !! {mappings, <NULL>}
00:00:19.901 !!
00:00:19.901 
00:00:19.901 The mappings are FLOATING.
00:00:19.901 00000000fec00000 - 00000000ff3fffff  Hypervisor Memory Area
00:00:19.901   1 conflict: 00000000ff400000
00:00:19.901 !!
00:00:19.901 !! {hma, <NULL>}
00:00:19.901 !!
00:00:19.901 Hypervisor Memory Area (HMA) Layout: Base 00000000fec00000, 0x00800000 bytes
00:00:19.901 00000000ff21f000-00000000ff220000                   DYNAMIC          fence
00:00:19.901 00000000ff20f000-00000000ff21f000                   DYNAMIC          Dynamic mapping
00:00:19.901 00000000ff20d000-00000000ff20f000                   MMIO2   0000000000000000 PCNetShMem
00:00:19.901 00000000ff20c000-00000000ff20d000                   DYNAMIC          fence
00:00:19.901 00000000ff1fc000-00000000ff20c000 025c0000 025c0000 LOCKED           alloc once (PDM_DEVICE_USER)
00:00:19.901 00000000ff1fb000-00000000ff1fc000                   DYNAMIC          fence
00:00:19.901 00000000ff1db000-00000000ff1fb000 027f0000 027f0000 LOCKED           alloc once (PDM_DEVICE_USER)
00:00:19.901 00000000ff15b000-00000000ff1db000                   MMIO2   0000000000000000 VGA VRam
00:00:19.901 00000000ff15a000-00000000ff15b000                   DYNAMIC          fence
00:00:19.901 00000000ff146000-00000000ff15a000 027d0000 027d0000 LOCKED           alloc once (PDM_DEVICE)
00:00:19.901 00000000ff145000-00000000ff146000                   DYNAMIC          fence
00:00:19.901 00000000ff142000-00000000ff145000 02010000 00000000 LOCKED           VBoxDD2GC.gc
00:00:19.901 00000000ff141000-00000000ff142000                   DYNAMIC          fence
00:00:19.901 00000000ff128000-00000000ff141000 025a0000 00000000 LOCKED           VBoxDDGC.gc
00:00:19.901 00000000ff127000-00000000ff128000                   DYNAMIC          fence
00:00:19.901 00000000ff0d3000-00000000ff127000 02d70000 00000000 LOCKED           VMMGC.gc
00:00:19.902 00000000ff0d2000-00000000ff0d3000                   DYNAMIC          fence
00:00:19.902 00000000feecc000-00000000ff0d2000 04aa0000 04aa0000 LOCKED           alloc once (PATM)
00:00:19.902 00000000feecb000-00000000feecc000                   DYNAMIC          fence
00:00:19.902 00000000feeba000-00000000feecb000 02170000 02170000 LOCKED           alloc once (SELM)
00:00:19.902 00000000feeb9000-00000000feeba000                   DYNAMIC          fence
00:00:19.902 00000000feea9000-00000000feeb9000 00e40000 00e40000 LOCKED           alloc once (SELM)
00:00:19.902 00000000feea8000-00000000feea9000                   DYNAMIC          fence
00:00:19.902 00000000feea6000-00000000feea8000 00dd0000 84afc000 HCPHYS  000000007f2fc000 Core Code
00:00:19.902 00000000feea5000-00000000feea6000                   DYNAMIC          fence
00:00:19.902 00000000feea4000-00000000feea5000 009f0000 00000000 HCPHYS  000000007e31a000 GIP
00:00:19.902 00000000feea3000-00000000feea4000                   DYNAMIC          fence
00:00:19.902 00000000feda2000-00000000feea3000 03220000 03220000 LOCKED           alloc once (PGM_PHYS)
00:00:19.902 00000000feda1000-00000000feda2000                   DYNAMIC          fence
00:00:19.902 00000000fed68000-00000000feda1000 00df0000 00df0000 LOCKED           alloc once (PGM_POOL)
00:00:19.902 00000000fed67000-00000000fed68000                   DYNAMIC          fence
00:00:19.902 00000000fed62000-00000000fed67000                   DYNAMIC          CR3 mapping
00:00:19.902 00000000fed61000-00000000fed62000                   DYNAMIC          fence
00:00:19.902 00000000fec21000-00000000fed61000 03cc0000 03cc0000 LOCKED           Heap
00:00:19.902 00000000fec20000-00000000fec21000                   DYNAMIC          fence
00:00:19.902 00000000fec01000-00000000fec20000 00c40000 84b58000 LOCKED           VM
00:00:19.902 00000000fec00000-00000000fec01000                   DYNAMIC          fence
00:00:19.902 !!
00:00:19.902 !! {cpumguest, verbose}
00:00:19.902 !!
00:00:19.902 Guest CPUM (VCPU 0) state: se
00:00:19.902 eax=00000046 ebx=c07dbe40 ecx=4da0edfd edx=00000000 esi=00000000 edi=c0761000
00:00:19.902 eip=c07a37db esp=c075ffb8 ebp=c075ffdc iopl=0      rf nv up ei pl nz na po nc
00:00:19.902 cs={0060 base=0000000000000000 limit=ffffffff flags=0000c09a} dr0=00000000 dr1=00000000
00:00:19.902 ds={007b base=0000000000000000 limit=ffffffff flags=0000c0f3} dr2=00000000 dr3=00000000
00:00:19.902 es={007b base=0000000000000000 limit=ffffffff flags=0000c0f3} dr4=00000000 dr5=00000000
00:00:19.902 fs={00d8 base=0000000000bc2000 limit=ffffffff flags=00008093} dr6=00000000 dr7=00000000
00:00:19.902 gs={00e0 base=00000000c1408620 limit=00000018 flags=00004091} cr0=8005003b cr2=ffdff000
00:00:19.902 ss={0068 base=0000000000000000 limit=ffffffff flags=0000c093} cr3=0084c000 cr4=00000690
00:00:19.902 gdtr=00000000c1400000:00ff  idtr=00000000c0761000:07ff  eflags=00010246
00:00:19.902 ldtr={0000 base=00000000 limit=00000000 flags=00000082}
00:00:19.902 tr  ={0080 base=c1406460 limit=0000206b flags=0000008b}
00:00:19.902 SysEnter={cs=0000 eip=00000000 esp=00000000}
00:00:19.902 FCW=037f FSW=0000 FTW=0000 FOP=0000 MXCSR=00001f80 MXCSR_MASK=0000ffff
00:00:19.902 FPUIP=00000000 CS=0000 Rsvrd1=0000  FPUDP=00000000 DS=0000 Rsvrd2=0000
00:00:19.902 ST(0)=FPR0={0000'00000000'00000000} t0 +0.0000000000000000000000 ^ 0
00:00:19.902 ST(1)=FPR1={0000'00000000'00000000} t0 +0.0000000000000000000000 ^ 0
00:00:19.902 ST(2)=FPR2={0000'00000000'00000000} t0 +0.0000000000000000000000 ^ 0
00:00:19.902 ST(3)=FPR3={0000'00000000'00000000} t0 +0.0000000000000000000000 ^ 0
00:00:19.902 ST(4)=FPR4={0000'00000000'00000000} t0 +0.0000000000000000000000 ^ 0
00:00:19.902 ST(5)=FPR5={0000'00000000'00000000} t0 +0.0000000000000000000000 ^ 0
00:00:19.902 ST(6)=FPR6={0000'00000000'00000000} t0 +0.0000000000000000000000 ^ 0
00:00:19.902 ST(7)=FPR7={0000'00000000'00000000} t0 +0.0000000000000000000000 ^ 0
00:00:19.902 XMM0 =00000000'00000000'00000000'00000000  XMM1 =00000000'00000000'00000000'00000000
00:00:19.902 XMM2 =00000000'00000000'00000000'00000000  XMM3 =00000000'00000000'00000000'00000000
00:00:19.902 XMM4 =00000000'00000000'00000000'00000000  XMM5 =00000000'00000000'00000000'00000000
00:00:19.902 XMM6 =00000000'00000000'00000000'00000000  XMM7 =00000000'00000000'00000000'00000000
00:00:19.903 XMM8 =00000000'00000000'00000000'00000000  XMM9 =00000000'00000000'00000000'00000000
00:00:19.903 XMM10=00000000'00000000'00000000'00000000  XMM11=00000000'00000000'00000000'00000000
00:00:19.903 XMM12=00000000'00000000'00000000'00000000  XMM13=00000000'00000000'00000000'00000000
00:00:19.903 XMM14=00000000'00000000'00000000'00000000  XMM15=00000000'00000000'00000000'00000000
00:00:19.903 EFER         =0000000000000000
00:00:19.903 PAT          =0007010600070106
00:00:19.903 STAR         =0000000000000000
00:00:19.903 CSTAR        =0000000000000000
00:00:19.903 LSTAR        =0000000000000000
00:00:19.903 SFMASK       =0000000000000000
00:00:19.903 KERNELGSBASE =0000000000000000
00:00:19.903 !!
00:00:19.903 !! {cpumguestinstr, verbose}
00:00:19.903 !!
00:00:19.903 
00:00:19.903 CPUM: 0060:c07a37db c7 05 54 11 7a c0 ff ff 3f 00 mov dword [0c07a1154h], 0003fffffh
00:00:19.903 
00:00:19.903 !!
00:00:19.903 !! {cpumhost, verbose}
00:00:19.903 !!
00:00:19.903 Host CPUM state: se
00:00:19.903 eax=xxxxxxxx ebx=84b73028 ecx=xxxxxxxx edx=xxxxxxxx esi=84b73000 edi=84b58000
00:00:19.903 eip=xxxxxxxx esp=96dfcb94 ebp=96dfcbc8 iopl=0         nv up di nt zr na po nc
00:00:19.903 cs=0000 ds=0023 es=0023 fs=0030 gs=0000                       eflags=00000086
00:00:19.903 cr0=7e3243a080010031 cr2=xxxxxxxx cr3=000006f9 cr4=00000000 gdtr=00000000:0000 ldtr=0000
00:00:19.903 dr[0]=3ff807ccc20 dr[1]=800000000x dr[2]=00000000 dr[3]=00000000x dr[6]=8600000000 dr[7]=6e044d600342e860
00:00:19.903 SysEnter={cs=6e02befd eip=0342e4d8 esp=0342e4dc}
00:00:19.903 !!
00:00:19.903 !! {mode, all}
00:00:19.903 !!
00:00:19.903 Guest paging mode:  32-bit, changed 106582 times, A20 enabled
00:00:19.903 Shadow paging mode: PAE
00:00:19.903 Host paging mode:   PAE+G
00:00:19.903 !!
00:00:19.903 !! {cpuid, verbose}
00:00:19.903 !!
00:00:19.903          RAW Standard CPUIDs
00:00:19.903      Function  eax      ebx      ecx      edx
00:00:19.903 Gst: 00000000  00000005 756e6547 6c65746e 49656e69
00:00:19.903 Hst:           0000000a 756e6547 6c65746e 49656e69
00:00:19.903 Gst: 00000001  000106c2 00000800 00000209 0789f3ff
00:00:19.903 Hst:           000106c2 01020800 0040c39d bfe9fbff
00:00:19.903 Gst: 00000002  4fba5901 0e3080c0 00000000 00000000
00:00:19.903 Hst:           4fba5901 0e3080c0 00000000 00000000
00:00:19.903 Gst: 00000003  00000000 00000000 00000000 00000000
00:00:19.903 Hst:           00000000 00000000 00000000 00000000
00:00:19.903 Gst: 00000004  00000000 00000000 00000000 00000000
00:00:19.903 Hst:           00004121 0140003f 0000003f 00000001
00:00:19.903 Gst: 00000005  00000040 00000040 00000000 00000000
00:00:19.903 Hst:           00000040 00000040 00000003 00020220
00:00:19.903 Name:                            GenuineIntel
00:00:19.903 Supports:                        0-5
00:00:19.903 Family:                          6  	Extended: 0 	Effective: 6
00:00:19.903 Model:                           12  	Extended: 1 	Effective: 28
00:00:19.903 Stepping:                        2
00:00:19.903 Type:                            0 (primary)
00:00:19.903 APIC ID:                         0x00
00:00:19.903 Logical CPUs:                    0
00:00:19.903 CLFLUSH Size:                    8
00:00:19.903 Brand ID:                        0x00
00:00:19.903 Mnemonic - Description                 = guest (host)
00:00:19.903 FPU - x87 FPU on Chip                  = 1 (1)
00:00:19.903 VME - Virtual 8086 Mode Enhancements   = 1 (1)
00:00:19.903 DE - Debugging extensions              = 1 (1)
00:00:19.903 PSE - Page Size Extension              = 1 (1)
00:00:19.903 TSC - Time Stamp Counter               = 1 (1)
00:00:19.903 MSR - Model Specific Registers         = 1 (1)
00:00:19.904 PAE - Physical Address Extension       = 1 (1)
00:00:19.904 MCE - Machine Check Exception          = 1 (1)
00:00:19.904 CX8 - CMPXCHG8B instruction            = 1 (1)
00:00:19.904 APIC - APIC On-Chip                    = 1 (1)
00:00:19.904 10 - Reserved                          = 0 (0)
00:00:19.904 SEP - SYSENTER and SYSEXIT             = 0 (1)
00:00:19.904 MTRR - Memory Type Range Registers     = 1 (1)
00:00:19.904 PGE - PTE Global Bit                   = 1 (1)
00:00:19.904 MCA - Machine Check Architecture       = 1 (1)
00:00:19.904 CMOV - Conditional Move Instructions   = 1 (1)
00:00:19.904 PAT - Page Attribute Table             = 1 (1)
00:00:19.904 PSE-36 - 36-bit Page Size Extention    = 0 (0)
00:00:19.904 PSN - Processor Serial Number          = 0 (0)
00:00:19.904 CLFSH - CLFLUSH Instruction.           = 1 (1)
00:00:19.904 20 - Reserved                          = 0 (0)
00:00:19.904 DS - Debug Store                       = 0 (1)
00:00:19.904 ACPI - Thermal Mon. & Soft. Clock Ctrl.= 0 (1)
00:00:19.904 MMX - Intel MMX Technology             = 1 (1)
00:00:19.904 FXSR - FXSAVE and FXRSTOR Instructions = 1 (1)
00:00:19.904 SSE - SSE Support                      = 1 (1)
00:00:19.904 SSE2 - SSE2 Support                    = 1 (1)
00:00:19.904 SS - Self Snoop                        = 0 (1)
00:00:19.904 HTT - Hyper-Threading Technology       = 0 (1)
00:00:19.904 TM - Thermal Monitor                   = 0 (1)
00:00:19.904 30 - Reserved                          = 0 (0)
00:00:19.904 PBE - Pending Break Enable             = 0 (1)
00:00:19.904 Supports SSE3                          = 1 (1)
00:00:19.904 PCLMULQDQ                              = 0 (0)
00:00:19.904 DS Area 64-bit layout                  = 0 (1)
00:00:19.904 Supports MONITOR/MWAIT                 = 1 (1)
00:00:19.904 CPL-DS - CPL Qualified Debug Store     = 0 (1)
00:00:19.904 VMX - Virtual Machine Technology       = 0 (0)
00:00:19.904 SMX - Safer Mode Extensions            = 0 (0)
00:00:19.904 Enhanced SpeedStep Technology          = 0 (1)
00:00:19.904 Terminal Monitor 2                     = 0 (1)
00:00:19.904 Supplemental SSE3 instructions         = 1 (1)
00:00:19.904 L1 Context ID                          = 0 (0)
00:00:19.904 11 - Reserved                          = 0 (0)
00:00:19.904 FMA extensions using YMM state         = 0 (0)
00:00:19.904 CMPXCHG16B instruction                 = 0 (0)
00:00:19.904 xTPR Update Control                    = 0 (1)
00:00:19.904 Perf/Debug Capability MSR              = 0 (1)
00:00:19.904 16 - Reserved                          = 0 (0)
00:00:19.904 PCID - Process-context identifiers     = 0 (0)
00:00:19.904 DCA - Direct Cache Access              = 0 (0)
00:00:19.904 SSE4.1 instruction extensions          = 0 (0)
00:00:19.905 SSE4.2 instruction extensions          = 0 (0)
00:00:19.905 Supports the x2APIC extensions         = 0 (0)
00:00:19.905 MOVBE instruction                      = 0 (1)
00:00:19.905 POPCNT instruction                     = 0 (0)
00:00:19.905 TSC-Deadline LAPIC timer mode          = 0 (0)
00:00:19.905 AESNI instruction extensions           = 0 (0)
00:00:19.905 XSAVE/XRSTOR extended state feature    = 0 (0)
00:00:19.905 Supports OSXSAVE                       = 0 (0)
00:00:19.905 AVX instruction extensions             = 0 (0)
00:00:19.905 29/30 - Reserved                       = 0x0 (0x0)
00:00:19.905 31 - Reserved (always 0)               = 0 (0)
00:00:19.905 
00:00:19.905          RAW Extended CPUIDs
00:00:19.905      Function  eax      ebx      ecx      edx
00:00:19.905 Gst: 80000000  80000008 00000000 00000000 00000000
00:00:19.905 Hst:           80000008 00000000 00000000 00000000
00:00:19.905 Gst: 80000001  00000000 00000000 00000000 00000000
00:00:19.905 Hst:           00000000 00000000 00000001 00100000
00:00:19.905 Gst: 80000002  20202020 20202020 746e4920 52286c65
00:00:19.905 Hst:           20202020 20202020 746e4920 52286c65
00:00:19.905 Gst: 80000003  74412029 54286d6f 4320294d 4e205550
00:00:19.905 Hst:           74412029 54286d6f 4320294d 4e205550
00:00:19.905 Gst: 80000004  20303732 20402020 30362e31 007a4847
00:00:19.905 Hst:           20303732 20402020 30362e31 007a4847
00:00:19.905 Gst: 80000005  00000000 00000000 00000000 00000000
00:00:19.905 Hst:           00000000 00000000 00000000 00000000
00:00:19.905 Gst: 80000006  00000000 00000000 02008040 00000000
00:00:19.905 Hst:           00000000 00000000 02008040 00000000
00:00:19.905 Gst: 80000007  00000000 00000000 00000000 00000000
00:00:19.905 Hst:           00000000 00000000 00000000 00000000
00:00:19.905 Gst: 80000008  00002020 00000000 00000000 00000000
00:00:19.905 Hst:           00002020 00000000 00000000 00000000
00:00:19.905 Gst: 80000009  07280203 00000000 00000000 00002501*
00:00:19.905 Hst:           07280203 00000000 00000000 00002501
00:00:19.905 Ext Name:                        
00:00:19.905 Ext Supports:                    0x80000000-0x80000008
00:00:19.905 Family:                          0  	Extended: 0 	Effective: 0
00:00:19.905 Model:                           0  	Extended: 0 	Effective: 0
00:00:19.905 Stepping:                        0
00:00:19.905 Brand ID:                        0x000
00:00:19.905 Mnemonic - Description                 = guest (host)
00:00:19.905 FPU - x87 FPU on Chip                  = 0 (0)
00:00:19.905 VME - Virtual 8086 Mode Enhancements   = 0 (0)
00:00:19.905 DE - Debugging extensions              = 0 (0)
00:00:19.905 PSE - Page Size Extension              = 0 (0)
00:00:19.905 TSC - Time Stamp Counter               = 0 (0)
00:00:19.905 MSR - K86 Model Specific Registers     = 0 (0)
00:00:19.905 PAE - Physical Address Extension       = 0 (0)
00:00:19.905 MCE - Machine Check Exception          = 0 (0)
00:00:19.905 CX8 - CMPXCHG8B instruction            = 0 (0)
00:00:19.905 APIC - APIC On-Chip                    = 0 (0)
00:00:19.905 10 - Reserved                          = 0 (0)
00:00:19.905 SEP - SYSCALL and SYSRET               = 0 (0)
00:00:19.905 MTRR - Memory Type Range Registers     = 0 (0)
00:00:19.905 PGE - PTE Global Bit                   = 0 (0)
00:00:19.905 MCA - Machine Check Architecture       = 0 (0)
00:00:19.906 CMOV - Conditional Move Instructions   = 0 (0)
00:00:19.906 PAT - Page Attribute Table             = 0 (0)
00:00:19.906 PSE-36 - 36-bit Page Size Extention    = 0 (0)
00:00:19.906 18 - Reserved                          = 0 (0)
00:00:19.906 19 - Reserved                          = 0 (0)
00:00:19.906 NX - No-Execute Page Protection        = 0 (1)
00:00:19.906 DS - Debug Store                       = 0 (0)
00:00:19.906 AXMMX - AMD Extensions to MMX Instr.   = 0 (0)
00:00:19.906 MMX - Intel MMX Technology             = 0 (0)
00:00:19.906 FXSR - FXSAVE and FXRSTOR Instructions = 0 (0)
00:00:19.906 25 - AMD fast FXSAVE and FXRSTOR Instr.= 0 (0)
00:00:19.906 26 - 1 GB large page support           = 0 (0)
00:00:19.906 27 - RDTSCP instruction                = 0 (0)
00:00:19.906 28 - Reserved                          = 0 (0)
00:00:19.906 29 - AMD Long Mode                     = 0 (0)
00:00:19.906 30 - AMD Extensions to 3DNow           = 0 (0)
00:00:19.906 31 - AMD 3DNow                         = 0 (0)
00:00:19.906 LahfSahf - LAHF/SAHF in 64-bit mode    = 0 (1)
00:00:19.906 CmpLegacy - Core MP legacy mode (depr) = 0 (0)
00:00:19.906 SVM - AMD VM Extensions                = 0 (0)
00:00:19.906 APIC registers starting at 0x400       = 0 (0)
00:00:19.906 AltMovCR8 - LOCK MOV CR0 means MOV CR8 = 0 (0)
00:00:19.906 Advanced bit manipulation              = 0 (0)
00:00:19.906 SSE4A instruction support              = 0 (0)
00:00:19.906 Misaligned SSE mode                    = 0 (0)
00:00:19.906 PREFETCH and PREFETCHW instruction     = 0 (0)
00:00:19.906 OS visible workaround                  = 0 (0)
00:00:19.906 Instruction based sampling             = 0 (0)
00:00:19.906 SSE5 support                           = 0 (0)
00:00:19.906 SKINIT, STGI, and DEV support          = 0 (0)
00:00:19.906 Watchdog timer support.                = 0 (0)
00:00:19.906 31:14 - Reserved                       = 0x0 (0x0)
00:00:19.906 Full Name:                                Intel(R) Atom(TM) CPU N270   @ 1.60GHz
00:00:19.906 TLB 2/4M Instr/Uni:              res0     0 entries
00:00:19.906 TLB 2/4M Data:                   res0     0 entries
00:00:19.906 TLB 4K Instr/Uni:                res0     0 entries
00:00:19.906 TLB 4K Data:                     res0     0 entries
00:00:19.906 L1 Instr Cache Line Size:        0 bytes
00:00:19.906 L1 Instr Cache Lines Per Tag:    0
00:00:19.906 L1 Instr Cache Associativity:    res0  
00:00:19.906 L1 Instr Cache Size:             0 KB
00:00:19.906 L1 Data Cache Line Size:         0 bytes
00:00:19.906 L1 Data Cache Lines Per Tag:     0
00:00:19.906 L1 Data Cache Associativity:     res0  
00:00:19.906 L1 Data Cache Size:              0 KB
00:00:19.906 L2 TLB 2/4M Instr/Uni:           off       0 entries
00:00:19.906 L2 TLB 2/4M Data:                off       0 entries
00:00:19.906 L2 TLB 4K Instr/Uni:             off       0 entries
00:00:19.906 L2 TLB 4K Data:                  off       0 entries
00:00:19.906 L2 Cache Line Size:              0 bytes
00:00:19.906 L2 Cache Lines Per Tag:          0
00:00:19.906 L2 Cache Associativity:          off   
00:00:19.906 L2 Cache Size:                   0 KB
00:00:19.906 APM Features:                   
00:00:19.906 Physical Address Width:          32 bits
00:00:19.906 Virtual Address Width:           32 bits
00:00:19.906 Guest Physical Address Width:    0 bits
00:00:19.906 Physical Core Count:             0
00:00:19.906 
00:00:19.906          RAW Centaur CPUIDs
00:00:19.906      Function  eax      ebx      ecx      edx
00:00:19.907 Gst: c0000000  07280203 00000000 00000000 00002501
00:00:19.907 Hst:           07280203 00000000 00000000 00002501
00:00:19.907 Gst: c0000001  07280203 00000000 00000000 00002501
00:00:19.907 Hst:           07280203 00000000 00000000 00002501
00:00:19.907 Gst: c0000002  07280203 00000000 00000000 00002501
00:00:19.907 Hst:           07280203 00000000 00000000 00002501
00:00:19.907 Gst: c0000003  07280203 00000000 00000000 00002501
00:00:19.907 Hst:           07280203 00000000 00000000 00002501
00:00:19.907 Centaur Supports:                0xc0000000-0x07280203
00:00:19.907 Mnemonic - Description                 = guest (host)
00:00:19.907 AIS - Alternate Instruction Set        = 0 (1)
00:00:19.907 AIS-E - AIS enabled                    = 0 (0)
00:00:19.907 RNG - Random Number Generator          = 0 (0)
00:00:19.907 RNG-E - RNG enabled                    = 0 (0)
00:00:19.907 LH - LongHaul MSR 0000_110Ah           = 0 (0)
00:00:19.907 FEMMS - FEMMS                          = 0 (0)
00:00:19.907 ACE - Advanced Cryptography Engine     = 0 (0)
00:00:19.907 ACE-E - ACE enabled                    = 0 (0)
00:00:19.907 ACE2 - Advanced Cryptography Engine 2  = 0 (1)
00:00:19.907 ACE2-E - ACE enabled                   = 0 (0)
00:00:19.907 PHE - Hash Engine                      = 0 (1)
00:00:19.907 PHE-E - PHE enabled                    = 0 (0)
00:00:19.907 PMM - Montgomery Multiplier            = 0 (0)
00:00:19.907 PMM-E - PMM enabled                    = 0 (1)
00:00:19.907 
00:00:19.907 !!
00:00:19.907 !! {handlers, phys virt hyper stats}
00:00:19.907 !!
 rest in next post...
awilson
Posts: 6
Joined: 9. Apr 2011, 07:18
Primary OS: MS Windows 7
VBox Version: OSE self-compiled
Guest OSses: Linux

Re: Building VirtualBox OSE 32 bit (SVN) with VS2010

Post by awilson »

Code: Select all

00:00:19.907 Physical handlers: (PhysHandlers=55792 (0xd9f0))
00:00:19.907 From     - To (incl) HandlerHC UserHC    HandlerGC UserGC    Type     Description
00:00:19.907 00000000000a0000 - 00000000000bffff  6e001280  03ce3ac0  ff0deac0  fec44ac0  MMIO     VGA - VGA Video Buffer
00:00:19.907 00000000000c0000 - 00000000000c8fff  6df7c8e0  03ce3c30  ff0f5470  fec44c30  Write    VGA BIOS
00:00:19.907 00000000000e0000 - 00000000000e0fff  6df7c8e0  03ce9940  ff0f5470  fec4a940  Write    ACPI RSDP
00:00:19.907 00000000000e1000 - 00000000000e1fff  6df7c8e0  03ccd830  ff0f5470  fec2e830  Write    DMI tables
00:00:19.907 00000000000e2000 - 00000000000effff  6df7c8e0  03cce0f0  ff0f5470  fec2f0f0  All      Net Boot ROM
00:00:19.907 00000000000f0000 - 00000000000fffff  6df7c8e0  03ccd920  ff0f5470  fec2e920  Write    PC BIOS - 0xfffff
00:00:19.907 000000000084c000 - 000000000084cfff  6dfe61d0  00e01de0  ff0fce20  fed79de0  Write    Guest Paging Access Handler
00:00:19.907 00000000008da000 - 00000000008dafff  6dfe61d0  00e01d70  ff0fce20  fed79d70  Write    Guest Paging Access Handler
00:00:19.907 00000000e0000000 - 00000000e0bfffff  6e4a5fe0  027d0080  ff12bea0  ff146080  Write    VGA LFB
00:00:19.907 00000000f0000000 - 00000000f0000fff  6e001280  03cea170  ff0deac0  fec4b170  MMIO     PCNet
00:00:19.907 00000000fee00000 - 00000000fee00fff  6e001280  03ccf760  ff0deac0  fec30760  MMIO     APIC Memory
00:00:19.907 00000000ffff0000 - 00000000ffffffff  6df7c8e0  03ccdc60  ff0f5470  fec2ec60  Write    PC BIOS - 0xffffffff
00:00:19.907 Virtual handlers:
00:00:19.907 From     - To (excl) HandlerHC HandlerGC Type     Description
00:00:19.907 00000000c0103000 - 00000000c0103fff  6dfac440  ff1047b0  Write    CSAM-PATM self-modifying code monitor handler
00:00:19.907 00000000c0104000 - 00000000c0104fff  6dfac440  ff1047b0  Write    CSAM-PATM self-modifying code monitor handler
00:00:19.908 00000000c0352000 - 00000000c0352fff  6dfac440  ff1047b0  Write    CSAM-PATM self-modifying code monitor handler
00:00:19.908 00000000c0581000 - 00000000c0581fff  6dfac440  ff1047b0  Write    CSAM-PATM self-modifying code monitor handler
00:00:19.908 00000000c058b000 - 00000000c058bfff  6dfac440  ff1047b0  Write    CSAM-PATM self-modifying code monitor handler
00:00:19.908 00000000c0761000 - 00000000c07617ff  6dfb4760  ff0d48e0  Write    Guest IDT write access handler
00:00:19.908 00000000c1400000 - 00000000c14000ff  6df98c10  ff0d4410  Write    Guest GDT write access handler
00:00:19.908 00000000c1406460 - 00000000c1406469  6df98c50  ff0d4550  Write    Guest TSS write access handler
00:00:19.908 Hypervisor Virtual handlers:
00:00:19.908 From     - To (excl) HandlerHC HandlerGC Type     Description
00:00:19.908 00000000fec06bd0 - 00000000fec073cf  00000000  ff0d4910  WriteHyp   Shadow IDT write access handler
00:00:19.908 00000000fec08050 - 00000000fec080d7  00000000  ff0d4800  WriteHyp   Shadow TSS write access handler
00:00:19.908 00000000feea9000 - 00000000feeb8fff  00000000  ff0d4740  WriteHyp   Shadow GDT write access handler
00:00:19.908 00000000feeba000 - 00000000feecafff  00000000  ff0d47a0  WriteHyp   Shadow LDT write access handler
00:00:19.908 !!
00:00:19.908 !! {timers, <NULL>}
00:00:19.908 !!
00:00:19.908 Timers (pVM=00c40000)
00:00:19.908 pTimerR3 offNext  offPrev  offSched Clock               Time             Expire HzHint State                     Description
00:00:19.908 03cea550 ffffffa0 ffff9910 00000000 Real             1220166            1220167      0 2-ACTIVE                  EMT Yielder
00:00:19.908 03cea4f0 00000000 00000060 00000000 Real             1220166            1221065      0 2-ACTIVE                  CPU Load Timer
00:00:19.908 03ce9db0 00000000 fffe6120 00000000 VrSy         16990000000      1199864031601      0 2-ACTIVE                  ACPI Timer
00:00:19.908 03ce84f0 00000000 00000000 00000000 Virt         17256044675        17260903747      0 2-ACTIVE                  Audio timer
00:00:19.908 03ce81d0 00000000 00000000 00000000 Virt         17256044675                  0      0 1-STOPPED                 PCNet Restore Timer
00:00:19.908 03ce8170 00000000 00000000 00000000 Virt         17256044675                  0      0 1-STOPPED                 PCNet Poll Timer
00:00:19.908 03ce3f40 00000000 00000000 00000000 Virt         17256044675                  0      0 1-STOPPED                 FDC Timer
00:00:19.908 03ce3e60 000066f0 00000000 00000000 Real             1220166            1220164      0 2-ACTIVE                  VGA Refresh Timer
00:00:19.908 03cd0360 fffffb70 00000000 00000000 VrSy         16990000000        16990244140      0 2-ACTIVE                  MC146818 RTC/CMOS - Second2
00:00:19.908 03cd0300 00000000 00000000 00000000 VrSy         16990000000        16990000000      0 1-STOPPED                 MC146818 RTC/CMOS - Second
00:00:19.908 03cd02a0 00000000 00000000 00000000 VrSy         16990000000                  0      0 1-STOPPED                 MC146818 RTC/CMOS - Periodic
00:00:19.908 03ccfed0 00019ee0 00000490 00000000 VrSy         16990000000        17029309817     18 2-ACTIVE                  i8254 Programmable Interval Timer
00:00:19.908 03ccf8b0 00000000 00000000 00000000 VrSy         16990000000                  0      0 1-STOPPED                 APIC Timer #0
00:00:19.908 03ccd430 00000000 00000000 00000000 Real             1220166                  0      0 1-STOPPED                 BlkCache-Commit
00:00:19.908 03ccd3d0 00000000 00000000 00000000 Real             1220166                  0      0 1-STOPPED                 Cache-Commit
00:00:19.908 !!
00:00:19.908 !! {activetimers, <NULL>}
00:00:19.908 !!
00:00:19.908 Active Timers (pVM=00c40000)
00:00:19.908 pTimerR3 offNext  offPrev  offSched Clock               Time             Expire HzHint State                     Description
00:00:19.908 03ce3e60 000066f0 00000000 00000000 Real             1220166            1220164      0 2-ACTIVE                  VGA Refresh Timer
00:00:19.909 03cea550 ffffffa0 ffff9910 00000000 Real             1220167            1220167      0 2-ACTIVE                  EMT Yielder
00:00:19.909 03cea4f0 00000000 00000060 00000000 Real             1220167            1221065      0 2-ACTIVE                  CPU Load Timer
00:00:19.909 03ce84f0 00000000 00000000 00000000 Virt         17256044675        17260903747      0 2-ACTIVE                  Audio timer
00:00:19.909 03cd0360 fffffb70 00000000 00000000 VrSy         16990000000        16990244140      0 2-ACTIVE                  MC146818 RTC/CMOS - Second2
00:00:19.909 03ccfed0 00019ee0 00000490 00000000 VrSy         16990000000        17029309817     18 2-ACTIVE                  i8254 Programmable Interval Timer
00:00:19.909 03ce9db0 00000000 fffe6120 00000000 VrSy         16990000000      1199864031601      0 2-ACTIVE                  ACPI Timer
00:00:19.909 !!
00:00:19.909 !! {cfgm}
00:00:19.909 !!
00:00:19.909 pRoot=02a82ba8:{/}
00:00:19.909 [/] (level 0)
00:00:19.909   CSAMEnabled     <integer> = 0x0000000000000001 (1)
00:00:19.909   CpuExecutionCap <integer> = 0x0000000000000064 (100)
00:00:19.909   EnablePAE       <integer> = 0x0000000000000001 (1)
00:00:19.909   HwVirtExtForced <integer> = 0x0000000000000000 (0)
00:00:19.909   MemBalloonSize  <integer> = 0x0000000000000000 (0)
00:00:19.909   Name            <string>  = "test" (cb=5)
00:00:19.909   NumCPUs         <integer> = 0x0000000000000001 (1)
00:00:19.909   PATMEnabled     <integer> = 0x0000000000000001 (1)
00:00:19.909   PageFusion      <integer> = 0x0000000000000000 (0)
00:00:19.909   RamHoleSize     <integer> = 0x0000000020000000 (536870912)
00:00:19.909   RamSize         <integer> = 0x0000000010000000 (268435456)
00:00:19.909   RawR0Enabled    <integer> = 0x0000000000000001 (1)
00:00:19.909   RawR3Enabled    <integer> = 0x0000000000000001 (1)
00:00:19.909   SyntheticCpu    <integer> = 0x0000000000000000 (0)
00:00:19.909   TimerMillies    <integer> = 0x000000000000000a (10)
00:00:19.909   UUID            <bytes>   = "06 be 3a 39 f9 8c 34 4d 85 1c 3c 79 cd b5 0e 30" (cb=16)
00:00:19.909 
00:00:19.909 [/CPUM/] (level 1)
00:00:19.909 
00:00:19.909 [/Devices/] (level 1)
00:00:19.909 
00:00:19.909 [/Devices/8237A/] (level 2)
00:00:19.910 
00:00:19.910 [/Devices/8237A/0/] (level 3)
00:00:19.910   Trusted <integer> = 0x0000000000000001 (1)
00:00:19.910 
00:00:19.910 [/Devices/8237A/0/Config/] (level 4) (restricted root)
00:00:19.910 
00:00:19.910 [/Devices/AudioSniffer/] (level 2)
00:00:19.910 
00:00:19.910 [/Devices/AudioSniffer/0/] (level 3)
00:00:19.910 
00:00:19.910 [/Devices/AudioSniffer/0/Config/] (level 4) (restricted root)
00:00:19.910 
00:00:19.910 [/Devices/AudioSniffer/0/LUN#0/] (level 4)
00:00:19.910   Driver <string>  = "MainAudioSniffer" (cb=17)
00:00:19.910 
00:00:19.910 [/Devices/AudioSniffer/0/LUN#0/Config/] (level 5) (restricted root)
00:00:19.911   Object <integer> = 0x00000000006e0d80 (7212416)
00:00:19.911 
00:00:19.911 [/Devices/VMMDev/] (level 2)
00:00:19.911 
00:00:19.911 [/Devices/VMMDev/0/] (level 3)
00:00:19.911   PCIBusNo      <integer> = 0x0000000000000000 (0)
00:00:19.911   PCIDeviceNo   <integer> = 0x0000000000000004 (4)
00:00:19.911   PCIFunctionNo <integer> = 0x0000000000000000 (0)
00:00:19.911   Trusted       <integer> = 0x0000000000000001 (1)
00:00:19.911 
00:00:19.911 [/Devices/VMMDev/0/Config/] (level 4) (restricted root)
00:00:19.911   GuestCoreDumpDir <string>  = "C:\temp\test\Snapshots" (cb=23)
00:00:19.911   RamSize          <integer> = 0x0000000010000000 (268435456)
00:00:19.911 
00:00:19.911 [/Devices/VMMDev/0/LUN#0/] (level 4)
00:00:19.911   Driver <string>  = "HGCM" (cb=5)
00:00:19.911 
00:00:19.911 [/Devices/VMMDev/0/LUN#0/Config/] (level 5) (restricted root)
00:00:19.911   Object <integer> = 0x0000000002a50fa8 (44371880)
00:00:19.911 
00:00:19.912 [/Devices/VMMDev/0/LUN#999/] (level 4)
00:00:19.912   Driver <string>  = "MainStatus" (cb=11)
00:00:19.912 
00:00:19.912 [/Devices/VMMDev/0/LUN#999/Config/] (level 5) (restricted root)
00:00:19.912   First   <integer> = 0x0000000000000000 (0)
00:00:19.912   Last    <integer> = 0x0000000000000000 (0)
00:00:19.912   papLeds <integer> = 0x0000000000729938 (7510328)
00:00:19.912 
00:00:19.912 [/Devices/acpi/] (level 2)
00:00:19.912 
00:00:19.912 [/Devices/acpi/0/] (level 3)
00:00:19.912   PCIBusNo      <integer> = 0x0000000000000000 (0)
00:00:19.912   PCIDeviceNo   <integer> = 0x0000000000000007 (7)
00:00:19.912   PCIFunctionNo <integer> = 0x0000000000000000 (0)
00:00:19.912   Trusted       <integer> = 0x0000000000000001 (1)
00:00:19.912 
00:00:19.912 [/Devices/acpi/0/Config/] (level 4) (restricted root)
00:00:19.912   CpuHotPlug        <integer> = 0x0000000000000000 (0)
00:00:19.912   FdcEnabled        <integer> = 0x0000000000000001 (1)
00:00:19.912   HostBusPciAddress <integer> = 0x0000000000000000 (0)
00:00:19.912   HpetEnabled       <integer> = 0x0000000000000000 (0)
00:00:19.912   IOAPIC            <integer> = 0x0000000000000000 (0)
00:00:19.912   IocPciAddress     <integer> = 0x0000000000010000 (65536)
00:00:19.913   NumCPUs           <integer> = 0x0000000000000001 (1)
00:00:19.913   RamHoleSize       <integer> = 0x0000000020000000 (536870912)
00:00:19.913   RamSize           <integer> = 0x0000000010000000 (268435456)
00:00:19.913   ShowCpu           <integer> = 0x0000000000000000 (0)
00:00:19.913   ShowRtc           <integer> = 0x0000000000000000 (0)
00:00:19.913   SmcEnabled        <integer> = 0x0000000000000000 (0)
00:00:19.913 
00:00:19.913 [/Devices/acpi/0/LUN#0/] (level 4)
00:00:19.913   Driver <string>  = "ACPIHost" (cb=9)
00:00:19.913 
00:00:19.913 [/Devices/acpi/0/LUN#0/Config/] (level 5) (restricted root)
00:00:19.913 
00:00:19.913 [/Devices/apic/] (level 2)
00:00:19.913 
00:00:19.913 [/Devices/apic/0/] (level 3)
00:00:19.913   Trusted <integer> = 0x0000000000000001 (1)
00:00:19.913 
00:00:19.913 [/Devices/apic/0/Config/] (level 4) (restricted root)
00:00:19.913   IOAPIC  <integer> = 0x0000000000000000 (0)
00:00:19.913   NumCPUs <integer> = 0x0000000000000001 (1)
00:00:19.913 
00:00:19.913 [/Devices/e1000/] (level 2)
00:00:19.914 
00:00:19.914 [/Devices/i82078/] (level 2)
00:00:19.914 
00:00:19.914 [/Devices/i82078/0/] (level 3)
00:00:19.914   Trusted <integer> = 0x0000000000000001 (1)
00:00:19.914 
00:00:19.914 [/Devices/i82078/0/Config/] (level 4) (restricted root)
00:00:19.914   DMA       <integer> = 0x0000000000000002 (2)
00:00:19.914   IOBase    <integer> = 0x00000000000003f0 (1008)
00:00:19.914   IRQ       <integer> = 0x0000000000000006 (6)
00:00:19.914   MemMapped <integer> = 0x0000000000000000 (0)
00:00:19.914 
00:00:19.914 [/Devices/i82078/0/LUN#0/] (level 4)
00:00:19.914   Driver <string>  = "Block" (cb=6)
00:00:19.914 
00:00:19.914 [/Devices/i82078/0/LUN#0/Config/] (level 5) (restricted root)
00:00:19.914   Mountable <integer> = 0x0000000000000001 (1)
00:00:19.914   Type      <string>  = "Floppy 1.44" (cb=12)
00:00:19.914 
00:00:19.914 [/Devices/i82078/0/LUN#999/] (level 4)
00:00:19.915   Driver <string>  = "MainStatus" (cb=11)
00:00:19.915 
00:00:19.915 [/Devices/i82078/0/LUN#999/Config/] (level 5) (restricted root)
00:00:19.915   First   <integer> = 0x0000000000000000 (0)
00:00:19.915   Last    <integer> = 0x0000000000000000 (0)
00:00:19.915   papLeds <integer> = 0x000000000072982c (7510060)
00:00:19.915 
00:00:19.915 [/Devices/i8254/] (level 2)
00:00:19.915 
00:00:19.915 [/Devices/i8254/0/] (level 3)
00:00:19.915 
00:00:19.915 [/Devices/i8254/0/Config/] (level 4) (restricted root)
00:00:19.915 
00:00:19.915 [/Devices/i8259/] (level 2)
00:00:19.915 
00:00:19.915 [/Devices/i8259/0/] (level 3)
00:00:19.915   Trusted <integer> = 0x0000000000000001 (1)
00:00:19.915 
00:00:19.915 [/Devices/i8259/0/Config/] (level 4) (restricted root)
00:00:19.916 
00:00:19.916 [/Devices/ichac97/] (level 2)
00:00:19.916 
00:00:19.916 [/Devices/ichac97/0/] (level 3)
00:00:19.916   PCIBusNo      <integer> = 0x0000000000000000 (0)
00:00:19.916   PCIDeviceNo   <integer> = 0x0000000000000005 (5)
00:00:19.916   PCIFunctionNo <integer> = 0x0000000000000000 (0)
00:00:19.916   Trusted       <integer> = 0x0000000000000001 (1)
00:00:19.916 
00:00:19.916 [/Devices/ichac97/0/Config/] (level 4) (restricted root)
00:00:19.916 
00:00:19.916 [/Devices/ichac97/0/LUN#0/] (level 4)
00:00:19.916   Driver <string>  = "AUDIO" (cb=6)
00:00:19.916 
00:00:19.916 [/Devices/ichac97/0/LUN#0/Config/] (level 5) (restricted root)
00:00:19.916   AudioDriver <string>  = "dsound" (cb=7)
00:00:19.916   StreamName  <string>  = "test" (cb=5)
00:00:19.916 
00:00:19.917 [/Devices/mc146818/] (level 2)
00:00:19.917 
00:00:19.917 [/Devices/mc146818/0/] (level 3)
00:00:19.917 
00:00:19.917 [/Devices/mc146818/0/Config/] (level 4) (restricted root)
00:00:19.917   UseUTC <integer> = 0x0000000000000000 (0)
00:00:19.917 
00:00:19.917 [/Devices/parallel/] (level 2)
00:00:19.917 
00:00:19.917 [/Devices/pcarch/] (level 2)
00:00:19.917 
00:00:19.917 [/Devices/pcarch/0/] (level 3)
00:00:19.917   Trusted <integer> = 0x0000000000000001 (1)
00:00:19.917 
00:00:19.917 [/Devices/pcarch/0/Config/] (level 4) (restricted root)
00:00:19.917 
00:00:19.917 [/Devices/pcbios/] (level 2)
00:00:19.917 
00:00:19.917 [/Devices/pcbios/0/] (level 3)
00:00:19.917   Trusted <integer> = 0x0000000000000001 (1)
00:00:19.917 
00:00:19.917 [/Devices/pcbios/0/Config/] (level 4) (restricted root)
00:00:19.917   BootDevice0    <string>  = "FLOPPY" (cb=7)
00:00:19.917   BootDevice1    <string>  = "DVD" (cb=4)
00:00:19.918   BootDevice2    <string>  = "IDE" (cb=4)
00:00:19.918   BootDevice3    <string>  = "NONE" (cb=5)
00:00:19.918   FloppyDevice   <string>  = "i82078" (cb=7)
00:00:19.918   HardDiskDevice <string>  = "piix3ide" (cb=9)
00:00:19.918   IOAPIC         <integer> = 0x0000000000000000 (0)
00:00:19.918   McfgBase       <integer> = 0x0000000000000000 (0)
00:00:19.918   McfgLength     <integer> = 0x0000000000000000 (0)
00:00:19.918   NumCPUs        <integer> = 0x0000000000000001 (1)
00:00:19.918   PXEDebug       <integer> = 0x0000000000000000 (0)
00:00:19.918   RamHoleSize    <integer> = 0x0000000020000000 (536870912)
00:00:19.918   RamSize        <integer> = 0x0000000010000000 (268435456)
00:00:19.918   UUID           <bytes>   = "06 be 3a 39 f9 8c 34 4d 85 1c 3c 79 cd b5 0e 30" (cb=16)
00:00:19.918 
00:00:19.918 [/Devices/pcbios/0/Config/NetBoot/] (level 5)
00:00:19.918 
00:00:19.918 [/Devices/pcbios/0/Config/NetBoot/0/] (level 6)
00:00:19.918   NIC           <integer> = 0x0000000000000000 (0)
00:00:19.918   PCIBusNo      <integer> = 0x0000000000000000 (0)
00:00:19.918   PCIDeviceNo   <integer> = 0x0000000000000003 (3)
00:00:19.918   PCIFunctionNo <integer> = 0x0000000000000000 (0)
00:00:19.918 
00:00:19.918 [/Devices/pci/] (level 2)
00:00:19.918 
00:00:19.918 [/Devices/pci/0/] (level 3)
00:00:19.918   Trusted <integer> = 0x0000000000000001 (1)
00:00:19.918 
00:00:19.918 [/Devices/pci/0/Config/] (level 4) (restricted root)
00:00:19.919   IOAPIC <integer> = 0x0000000000000000 (0)
00:00:19.919 
00:00:19.919 [/Devices/pckbd/] (level 2)
00:00:19.919 
00:00:19.919 [/Devices/pckbd/0/] (level 3)
00:00:19.919   Trusted <integer> = 0x0000000000000001 (1)
00:00:19.919 
00:00:19.919 [/Devices/pckbd/0/Config/] (level 4) (restricted root)
00:00:19.919 
00:00:19.919 [/Devices/pckbd/0/LUN#0/] (level 4)
00:00:19.919   Driver <string>  = "KeyboardQueue" (cb=14)
00:00:19.919 
00:00:19.919 [/Devices/pckbd/0/LUN#0/AttachedDriver/] (level 5)
00:00:19.919   Driver <string>  = "MainKeyboard" (cb=13)
00:00:19.919 
00:00:19.919 [/Devices/pckbd/0/LUN#0/AttachedDriver/Config/] (level 6) (restricted root)
00:00:19.920   Object <integer> = 0x00000000006d83c0 (7177152)
00:00:19.920 
00:00:19.920 [/Devices/pckbd/0/LUN#0/Config/] (level 5) (restricted root)
00:00:19.920   QueueSize <integer> = 0x0000000000000040 (64)
00:00:19.920 
00:00:19.920 [/Devices/pckbd/0/LUN#1/] (level 4)
00:00:19.920   Driver <string>  = "MouseQueue" (cb=11)
00:00:19.920 
00:00:19.920 [/Devices/pckbd/0/LUN#1/AttachedDriver/] (level 5)
00:00:19.920   Driver <string>  = "MainMouse" (cb=10)
00:00:19.920 
00:00:19.920 [/Devices/pckbd/0/LUN#1/AttachedDriver/Config/] (level 6) (restricted root)
00:00:19.920   Object <integer> = 0x0000000000ccbfb0 (13418416)
00:00:19.920 
00:00:19.920 [/Devices/pckbd/0/LUN#1/Config/] (level 5) (restricted root)
00:00:19.921   QueueSize <integer> = 0x0000000000000080 (128)
00:00:19.921 
00:00:19.921 [/Devices/pcnet/] (level 2)
00:00:19.921 
00:00:19.921 [/Devices/pcnet/0/] (level 3)
00:00:19.921   PCIBusNo      <integer> = 0x0000000000000000 (0)
00:00:19.921   PCIDeviceNo   <integer> = 0x0000000000000003 (3)
00:00:19.921   PCIFunctionNo <integer> = 0x0000000000000000 (0)
00:00:19.921   Trusted       <integer> = 0x0000000000000001 (1)
00:00:19.921 
00:00:19.921 [/Devices/pcnet/0/Config/] (level 4) (restricted root)
00:00:19.921   Am79C973       <integer> = 0x0000000000000000 (0)
00:00:19.921   CableConnected <integer> = 0x0000000000000001 (1)
00:00:19.921   LineSpeed      <integer> = 0x0000000000000000 (0)
00:00:19.921   MAC            <bytes>   = "08 00 27 33 79 4d" (cb=6)
00:00:19.921 
00:00:19.921 [/Devices/pcnet/0/LUN#0/] (level 4)
00:00:19.921   Driver <string>  = "NAT" (cb=4)
00:00:19.921 
00:00:19.921 [/Devices/pcnet/0/LUN#0/Config/] (level 5) (restricted root)
00:00:19.922   AliasMode       <integer> = 0x0000000000000000 (0)
00:00:19.922   BootFile        <string>  = "test.pxe" (cb=9)
00:00:19.922   DNSProxy        <integer> = 0x0000000000000000 (0)
00:00:19.922   Network         <string>  = "10.0.2.0/24" (cb=12)
00:00:19.922   PassDomain      <integer> = 0x0000000000000001 (1)
00:00:19.922   TFTPPrefix      <string>  = "C:\Users\setup/.VirtualBox\TFTP" (cb=32)
00:00:19.922   UseHostResolver <integer> = 0x0000000000000000 (0)
00:00:19.922 
00:00:19.922 [/Devices/pcnet/0/LUN#999/] (level 4)
00:00:19.922   Driver <string>  = "MainStatus" (cb=11)
00:00:19.922 
00:00:19.922 [/Devices/pcnet/0/LUN#999/Config/] (level 5) (restricted root)
00:00:19.922   papLeds <integer> = 0x0000000000729918 (7510296)
00:00:19.922 
00:00:19.922 [/Devices/piix3ide/] (level 2)
00:00:19.922 
00:00:19.922 [/Devices/piix3ide/0/] (level 3)
00:00:19.922   PCIBusNo      <integer> = 0x0000000000000000 (0)
00:00:19.922   PCIDeviceNo   <integer> = 0x0000000000000001 (1)
00:00:19.922   PCIFunctionNo <integer> = 0x0000000000000001 (1)
00:00:19.922   Trusted       <integer> = 0x0000000000000001 (1)
00:00:19.922 
00:00:19.922 [/Devices/piix3ide/0/Config/] (level 4) (restricted root)
00:00:19.923   Type <string>  = "PIIX4" (cb=6)
00:00:19.923 
00:00:19.923 [/Devices/piix3ide/0/LUN#0/] (level 4)
00:00:19.923   Driver <string>  = "Block" (cb=6)
00:00:19.923 
00:00:19.923 [/Devices/piix3ide/0/LUN#0/AttachedDriver/] (level 5)
00:00:19.923   Driver <string>  = "VD" (cb=3)
00:00:19.923 
00:00:19.923 [/Devices/piix3ide/0/LUN#0/AttachedDriver/Config/] (level 6) (restricted root)
00:00:19.923   Format   <string>  = "RAW" (cb=4)
00:00:19.923   Path     <string>  = "C:\temp\ubuntu-10.04-desktop-i386.iso" (cb=38)
00:00:19.923   ReadOnly <integer> = 0x0000000000000001 (1)
00:00:19.923   Type     <string>  = "DVD" (cb=4)
00:00:19.923 
00:00:19.923 [/Devices/piix3ide/0/LUN#0/Config/] (level 5) (restricted root)
00:00:19.923   Mountable <integer> = 0x0000000000000001 (1)
00:00:19.923   Type      <string>  = "DVD" (cb=4)
00:00:19.923 
00:00:19.923 [/Devices/piix3ide/0/LUN#1/] (level 4)
00:00:19.924   Driver <string>  = "Block" (cb=6)
00:00:19.924 
00:00:19.924 [/Devices/piix3ide/0/LUN#1/AttachedDriver/] (level 5)
00:00:19.924   Driver <string>  = "VD" (cb=3)
00:00:19.924 
00:00:19.924 [/Devices/piix3ide/0/LUN#1/AttachedDriver/Config/] (level 6) (restricted root)
00:00:19.924   Format <string>  = "VMDK" (cb=5)
00:00:19.924   Path   <string>  = "C:\temp\mcdev\test-disk1.vmdk" (cb=30)
00:00:19.924   Type   <string>  = "HardDisk" (cb=9)
00:00:19.924 
00:00:19.924 [/Devices/piix3ide/0/LUN#1/Config/] (level 5) (restricted root)
00:00:19.924   Mountable <integer> = 0x0000000000000000 (0)
00:00:19.924   Type      <string>  = "HardDisk" (cb=9)
00:00:19.924 
00:00:19.924 [/Devices/piix3ide/0/LUN#999/] (level 4)
00:00:19.924   Driver <string>  = "MainStatus" (cb=11)
00:00:19.924 
00:00:19.924 [/Devices/piix3ide/0/LUN#999/Config/] (level 5) (restricted root)
00:00:19.925   First   <integer> = 0x0000000000000000 (0)
00:00:19.925   Last    <integer> = 0x0000000000000003 (3)
00:00:19.925   papLeds <integer> = 0x0000000000729830 (7510064)
00:00:19.925 
00:00:19.925 [/Devices/serial/] (level 2)
00:00:19.925 
00:00:19.925 [/Devices/vga/] (level 2)
00:00:19.925 
00:00:19.925 [/Devices/vga/0/] (level 3)
00:00:19.925   PCIBusNo      <integer> = 0x0000000000000000 (0)
00:00:19.925   PCIDeviceNo   <integer> = 0x0000000000000002 (2)
00:00:19.925   PCIFunctionNo <integer> = 0x0000000000000000 (0)
00:00:19.925   Trusted       <integer> = 0x0000000000000001 (1)
00:00:19.925 
00:00:19.925 [/Devices/vga/0/Config/] (level 4) (restricted root)
00:00:19.925   CustomVideoModes <integer> = 0x0000000000000000 (0)
00:00:19.925   FadeIn           <integer> = 0x0000000000000001 (1)
00:00:19.925   FadeOut          <integer> = 0x0000000000000001 (1)
00:00:19.925   HeightReduction  <integer> = 0x0000000000000000 (0)
00:00:19.925   LogoFile         <string>  = "" (cb=1)
00:00:19.925   LogoTime         <integer> = 0x0000000000000000 (0)
00:00:19.925   MonitorCount     <integer> = 0x0000000000000001 (1)
00:00:19.925   ShowBootMenu     <integer> = 0x0000000000000002 (2)
00:00:19.925   VRamSize         <integer> = 0x0000000000c00000 (12582912)
00:00:19.925 
00:00:19.925 [/Devices/vga/0/LUN#0/] (level 4)
00:00:19.926   Driver <string>  = "MainDisplay" (cb=12)
00:00:19.926 
00:00:19.926 [/Devices/vga/0/LUN#0/Config/] (level 5) (restricted root)
00:00:19.926   Object <integer> = 0x0000000000729c58 (7511128)
00:00:19.926 
00:00:19.926 [/Devices/virtio-net/] (level 2)
00:00:19.926 
00:00:19.926 [/HWVirtExt/] (level 1)
00:00:19.926   64bitEnabled       <integer> = 0x0000000000000000 (0)
00:00:19.926   EnableLargePages   <integer> = 0x0000000000000000 (0)
00:00:19.926   EnableNestedPaging <integer> = 0x0000000000000001 (1)
00:00:19.926   EnableVPID         <integer> = 0x0000000000000001 (1)
00:00:19.926   Enabled            <integer> = 0x0000000000000001 (1)
00:00:19.926   Exclusive          <integer> = 0x0000000000000000 (0)
00:00:19.926 
00:00:19.926 [/MM/] (level 1)
00:00:19.926   CanUseLargerHeap <integer> = 0x0000000000000000 (0)
00:00:19.926 
00:00:19.926 [/PDM/] (level 1)
00:00:19.926 
00:00:19.926 [/PDM/AsyncCompletion/] (level 2)
00:00:19.926 
00:00:19.926 [/PDM/AsyncCompletion/File/] (level 3)
00:00:19.927 
00:00:19.927 [/PDM/AsyncCompletion/File/BwGroups/] (level 4)
00:00:19.927 
00:00:19.927 [/PDM/BlkCache/] (level 2)
00:00:19.927   CacheSize <integer> = 0x0000000000500000 (5242880)
00:00:19.927 
00:00:19.927 [/PDM/Devices/] (level 2)
00:00:19.927 
00:00:19.927 [/PDM/Drivers/] (level 2)
00:00:19.927 
00:00:19.927 [/PDM/Drivers/VBoxC/] (level 3)
00:00:19.927   Path <string>  = "VBoxC" (cb=6)
00:00:19.927 
00:00:19.927 [/TM/] (level 1)
00:00:19.927   UTCOffset <integer> = 0x0000000000000000 (0)
00:00:19.927

rest in next post...
awilson
Posts: 6
Joined: 9. Apr 2011, 07:18
Primary OS: MS Windows 7
VBox Version: OSE self-compiled
Guest OSses: Linux

Re: Building VirtualBox OSE 32 bit (SVN) with VS2010

Post by awilson »

Code: Select all

00:00:19.927 !!
00:00:19.927 !! {clocks}
00:00:19.927 !!
00:00:19.927 Cpu Tick:        26230802826 (0x0000061b7a498a) 1543896576Hz paused - virtualized - virtual clock
00:00:19.927  Virtual:        17256044675 (0x000004048a5883) 1000000000Hz paused
00:00:19.927 VirtSync:        16990000000 (0x000003f4aed380) paused - catchup
00:00:19.928           offset 265893219  catch-up rate 100 %
00:00:19.928     Real:            1220185 (0x00000000129e59) 1000Hz
00:00:19.928 !!
00:00:19.928 !! {ff}
00:00:19.928 !!
00:00:19.928 Global FFs: 0x0
00:00:19.928 CPU 0 FFs: 0x80004
00:00:19.928     TIMER, TLB_FLUSH
00:00:19.928   Groups:
00:00:19.928     EXTERNAL_HALTED, HIGH_PRIORITY_PRE, HWACCM_TO_R3, ALL_BUT_RAW
00:00:19.928 !!
00:00:19.928 !! {gdt}
00:00:19.928 !!
00:00:19.928 Shadow GDT (GCAddr=feea9000):
00:00:19.928 0060 - 0000ffff 00cfbb00 - base=00000000 limit=ffffffff dpl=1 CodeER Accessed Present Page 32-bit 
00:00:19.928 0068 - 0000ffff 00cfb300 - base=00000000 limit=ffffffff dpl=1 DataRW Accessed Present Page 32-bit 
00:00:19.928 0070 - 0000ffff 00cffb00 - base=00000000 limit=ffffffff dpl=3 CodeER Accessed Present Page 32-bit 
00:00:19.928 0078 - 0000ffff 00cff300 - base=00000000 limit=ffffffff dpl=3 DataRW Accessed Present Page 32-bit 
00:00:19.928 0090 - 0000ffff 0040bb00 - base=00000000 limit=0000ffff dpl=1 CodeER Accessed Present 32-bit 
00:00:19.928 0098 - 0000ffff 0000bb00 - base=00000000 limit=0000ffff dpl=1 CodeER Accessed Present 16-bit 
00:00:19.928 00a0 - 0000ffff 0000b300 - base=00000000 limit=0000ffff dpl=1 DataRW Accessed Present 16-bit 
00:00:19.928 00a8 - 00000000 0000b300 - base=00000000 limit=00000000 dpl=1 DataRW Accessed Present 16-bit 
00:00:19.928 00b0 - 00000000 0000b300 - base=00000000 limit=00000000 dpl=1 DataRW Accessed Present 16-bit 
00:00:19.928 00b8 - 0000ffff 0040bb00 - base=00000000 limit=0000ffff dpl=1 CodeER Accessed Present 32-bit 
00:00:19.928 00c0 - 0000ffff 0000bb00 - base=00000000 limit=0000ffff dpl=1 CodeER Accessed Present 16-bit 
00:00:19.928 00c8 - 0000ffff 0040b300 - base=00000000 limit=0000ffff dpl=1 DataRW Accessed Present 32-bit 
00:00:19.928 00d0 - 0000ffff 00cfb300 - base=00000000 limit=ffffffff dpl=1 DataRW Accessed Present Page 32-bit 
00:00:19.928 00d8 - 2000ffff 008fb3bc - base=00bc2000 limit=ffffffff dpl=1 DataRW Accessed Present Page 16-bit 
00:00:19.928 00e0 - 86200018 c140b140 - base=c1408620 limit=00000018 dpl=1 DataRO Accessed Present 32-bit 
00:00:19.928 ffd8 - 80d80087 fe0089c0 - base=fec080d8 limit=00000087 dpl=0 TSS32Avail Present 16-bit  HyperTSSTrap08
00:00:19.928 ffe0 - 80500087 fe008bc0 - base=fec08050 limit=00000087 dpl=0 TSS32Busy Present 16-bit  HyperTSS
00:00:19.928 ffe8 - 0000ffff 00af9b00 - base=00000000 limit=ffffffff dpl=0 CodeER Accessed Present Page 16-bit  HyperCS64
00:00:19.928 fff0 - 0000ffff 00cf9300 - base=00000000 limit=ffffffff dpl=0 DataRW Accessed Present Page 32-bit  HyperDS
00:00:19.928 fff8 - 0000ffff 00cf9b00 - base=00000000 limit=ffffffff dpl=0 CodeER Accessed Present Page 32-bit  HyperCS
00:00:19.928 !!
00:00:19.928 !! {gdtguest}
00:00:19.928 !!
00:00:19.928 Guest GDT (GCAddr=00000000c1400000 limit=ff):
00:00:19.929 0060 - 0000ffff 00cf9a00 - base=00000000 limit=ffffffff dpl=0 CodeER Present Page 32-bit 
00:00:19.929 0068 - 0000ffff 00cf9300 - base=00000000 limit=ffffffff dpl=0 DataRW Accessed Present Page 32-bit 
00:00:19.929 0070 - 0000ffff 00cffa00 - base=00000000 limit=ffffffff dpl=3 CodeER Present Page 32-bit 
00:00:19.929 0078 - 0000ffff 00cff300 - base=00000000 limit=ffffffff dpl=3 DataRW Accessed Present Page 32-bit 
00:00:19.929 0080 - 6460206b c1008b40 - base=c1406460 limit=0000206b dpl=0 TSS32Busy Present 16-bit 
00:00:19.929 0090 - 0000ffff 00409a00 - base=00000000 limit=0000ffff dpl=0 CodeER Present 32-bit 
00:00:19.929 0098 - 0000ffff 00009a00 - base=00000000 limit=0000ffff dpl=0 CodeER Present 16-bit 
00:00:19.929 00a0 - 0000ffff 00009200 - base=00000000 limit=0000ffff dpl=0 DataRW Present 16-bit 
00:00:19.929 00a8 - 00000000 00009200 - base=00000000 limit=00000000 dpl=0 DataRW Present 16-bit 
00:00:19.929 00b0 - 00000000 00009200 - base=00000000 limit=00000000 dpl=0 DataRW Present 16-bit 
00:00:19.929 00b8 - 0000ffff 00409a00 - base=00000000 limit=0000ffff dpl=0 CodeER Present 32-bit 
00:00:19.929 00c0 - 0000ffff 00009a00 - base=00000000 limit=0000ffff dpl=0 CodeER Present 16-bit 
00:00:19.929 00c8 - 0000ffff 00409200 - base=00000000 limit=0000ffff dpl=0 DataRW Present 32-bit 
00:00:19.929 00d0 - 0000ffff 00cf9200 - base=00000000 limit=ffffffff dpl=0 DataRW Present Page 32-bit 
00:00:19.929 00d8 - 2000ffff 008f93bc - base=00bc2000 limit=ffffffff dpl=0 DataRW Accessed Present Page 16-bit 
00:00:19.929 00e0 - 86200018 c1409140 - base=c1408620 limit=00000018 dpl=0 DataRO Accessed Present 32-bit 
00:00:19.929 00f8 - 1800206b c0008976 - base=c0761800 limit=0000206b dpl=0 TSS32Avail Present 16-bit 
00:00:19.929 !!
00:00:19.929 !! {ioport}
00:00:19.929 !!
00:00:19.929 I/O Port R3 ranges (pVM=00c40000)
00:00:19.929 Range     pDevIns  In       Out      pvUser   Description
00:00:19.929 0000-0000 00722b90 6e480cf0 6e480c30 00722c18 DMA
00:00:19.929 0001-0001 00722b90 6e480cf0 6e480c30 00722c18 DMA
00:00:19.929 0002-0002 00722b90 6e480cf0 6e480c30 00722c18 DMA
00:00:19.929 0003-0003 00722b90 6e480cf0 6e480c30 00722c18 DMA
00:00:19.929 0004-0004 00722b90 6e480cf0 6e480c30 00722c18 DMA
00:00:19.929 0005-0005 00722b90 6e480cf0 6e480c30 00722c18 DMA
00:00:19.929 0006-0006 00722b90 6e480cf0 6e480c30 00722c18 DMA
00:00:19.929 0007-0007 00722b90 6e480cf0 6e480c30 00722c18 DMA
00:00:19.929 0008-0008 00722b90 6e480dc0 6e480cd0 00722c18 DMA cont
00:00:19.929 0009-0009 00722b90 6e480dc0 6e480cd0 00722c18 DMA cont
00:00:19.929 000a-000a 00722b90 6e480dc0 6e480cd0 00722c18 DMA cont
00:00:19.929 000b-000b 00722b90 6e480dc0 6e480cd0 00722c18 DMA cont
00:00:19.929 000c-000c 00722b90 6e480dc0 6e480cd0 00722c18 DMA cont
00:00:19.929 000d-000d 00722b90 6e480dc0 6e480cd0 00722c18 DMA cont
00:00:19.929 000e-000e 00722b90 6e480dc0 6e480cd0 00722c18 DMA cont
00:00:19.929 000f-000f 00722b90 6e480dc0 6e480cd0 00722c18 DMA cont
00:00:19.929 0020-0021 03ccf910 6e4afb10 6e4afba0 00000000 i8259 PIC #0
00:00:19.930 0040-0043 03ccfd00 6e4b0a00 6e4b12e0 00000000 i8254 Programmable Interval Timer
00:00:19.930 0060-0060 03ccef50 6e4bd4b0 6e4bd500 00000000 PC Keyboard - Data
00:00:19.930 0061-0061 03ccfd00 6e4b0b00 6e4b1470 00000000 PC Speaker
00:00:19.930 0064-0064 03ccef50 6e4bd550 6e4bd5a0 00000000 PC Keyboard - Command / Status
00:00:19.930 0070-0073 03cd0070 6e4aa640 6e4aaf30 00000000 MC146818 RTC/CMOS
00:00:19.930 0081-0081 00722b90 6e480d20 6e480c50 00722c18 DMA Page
00:00:19.930 0082-0082 00722b90 6e480d20 6e480c50 00722c18 DMA Page
00:00:19.930 0083-0083 00722b90 6e480d20 6e480c50 00722c18 DMA Page
00:00:19.930 0087-0087 00722b90 6e480d20 6e480c50 00722c18 DMA Page
00:00:19.930 0089-0089 00722b90 6e480d20 6e480c50 00722c90 DMA Page
00:00:19.930 008a-008a 00722b90 6e480d20 6e480c50 00722c90 DMA Page
00:00:19.930 008b-008b 00722b90 6e480d20 6e480c50 00722c90 DMA Page
00:00:19.930 008f-008f 00722b90 6e480d20 6e480c50 00722c90 DMA Page
00:00:19.930 0092-0092 02a5e570 6e4c02c0 6e4c0320 00000000 PS/2 system control port A (A20 and more)
00:00:19.930 00a0-00a1 03ccf910 6e4afb10 6e4afba0 00000001 i8259 PIC #1
00:00:19.930 00c0-00c0 00722b90 6e480cf0 6e480c30 00722c90 DMA
00:00:19.930 00c2-00c2 00722b90 6e480cf0 6e480c30 00722c90 DMA
00:00:19.930 00c4-00c4 00722b90 6e480cf0 6e480c30 00722c90 DMA
00:00:19.930 00c6-00c6 00722b90 6e480cf0 6e480c30 00722c90 DMA
00:00:19.930 00c8-00c8 00722b90 6e480cf0 6e480c30 00722c90 DMA
00:00:19.930 00ca-00ca 00722b90 6e480cf0 6e480c30 00722c90 DMA
00:00:19.930 00cc-00cc 00722b90 6e480cf0 6e480c30 00722c90 DMA
00:00:19.930 00ce-00ce 00722b90 6e480cf0 6e480c30 00722c90 DMA
00:00:19.930 00d0-00d0 00722b90 6e480dc0 6e480cd0 00722c90 DMA cont
00:00:19.930 00d2-00d2 00722b90 6e480dc0 6e480cd0 00722c90 DMA cont
00:00:19.930 00d4-00d4 00722b90 6e480dc0 6e480cd0 00722c90 DMA cont
00:00:19.930 00d6-00d6 00722b90 6e480dc0 6e480cd0 00722c90 DMA cont
00:00:19.930 00d8-00d8 00722b90 6e480dc0 6e480cd0 00722c90 DMA cont
00:00:19.930 00da-00da 00722b90 6e480dc0 6e480cd0 00722c90 DMA cont
00:00:19.930 00dc-00dc 00722b90 6e480dc0 6e480cd0 00722c90 DMA cont
00:00:19.930 00de-00de 00722b90 6e480dc0 6e480cd0 00722c90 DMA cont
00:00:19.930 00f0-00ff 02a5e570 6e4c01f0 6e4c0230 00000000 Math Co-Processor (DOS/OS2 mode)
00:00:19.930 0170-0177 03ce4020 6e4b8610 6e4b8590 00000001 ATA I/O Base 1
00:00:19.930 01ce-01ce 027d0000 6e4a5170 6e4a4fe0 00000000 VGA/VBE - Index
00:00:19.930 01cf-01cf 027d0000 6e4a5090 6e4a4f20 00000000 VGA/VBE - Data
00:00:19.930 01f0-01f7 03ce4020 6e4b8610 6e4b8590 00000000 ATA I/O Base 1
00:00:19.930 0376-0376 03ce4020 6e4b8950 6e4b88f0 00000001 ATA I/O Base 2
00:00:19.930 03b0-03b3 027d0000 6e4a52f0 6e4a5230 00000000 VGA - 3b0 (HGSMI host)
00:00:19.931 03b4-03b5 027d0000 6e4a4e80 6e4a4df0 00000000 VGA - 3b4
00:00:19.931 03b6-03b6 027d0000 6e4a60e0 6e4a6090 00000000 VBE BIOS Extra Data
00:00:19.931 03b7-03b7 027d0000 6e4a6010 6e4a6020 00000000 VGA BIOS debug/panic
00:00:19.931 03b8-03b8 027d0000 6e4a6830 6e4a6680 00000000 BIOS Logo
00:00:19.931 03ba-03ba 027d0000 6e4a4e80 6e4a4df0 00000000 VGA - 3ba
00:00:19.931 03c0-03cf 027d0000 6e4a4e80 6e4a4df0 00000000 VGA - 3c0
00:00:19.931 03d0-03d3 027d0000 6e4a52f0 6e4a5230 00000000 VGA - 3d0 (HGSMI guest)
00:00:19.931 03d4-03d5 027d0000 6e4a4e80 6e4a4df0 00000000 VGA - 3d4
00:00:19.931 03da-03da 027d0000 6e4a4e80 6e4a4df0 00000000 VGA - 3da
00:00:19.931 03f1-03f5 02b81520 6e47ff60 6e480060 02b815a0 FDC#1
00:00:19.931 03f6-03f6 03ce4020 6e4b8950 6e4b88f0 00000000 ATA I/O Base 2
00:00:19.931 03f7-03f7 02b81520 6e47ff60 6e480060 02b815a0 FDC#2
00:00:19.931 0400-0403 02b713f8 6e4bed00 6e4bed10 00000000 Bochs PC BIOS - Panic & Debug
00:00:19.931 04d0-04d0 03ccf910 6e4afc00 6e4afc60 03ccf990 i8259 PIC #0 - elcr
00:00:19.931 04d1-04d1 03ccf910 6e4afc00 6e4afc60 03ccf9b0 i8259 PIC #1 - elcr
00:00:19.931 0504-0504 03cd0e80 6dfaae30 6e49cf30 00000000 VMMDev backdoor logging
00:00:19.931 0505-0505 03cd0e80 6e49d0b0 6e49d080 00000000 VMMDev timesync backdoor
00:00:19.931 0cf8-0cf8 03cce3e0 6e46c950 6e46c900 00000000 i440FX (PCI)
00:00:19.931 0cfc-0cff 03cce3e0 6e46e610 6e46e5b0 00000000 i440FX (PCI)
00:00:19.931 4000-4000 03ce8550 6e482f40 6e482fe0 03ce85d0 ACPI PM1a Status
00:00:19.931 4002-4002 03ce8550 6e482f10 6e482fa0 03ce85d0 ACPI PM1a Enable
00:00:19.931 4004-4004 03ce8550 6e482f70 6e483070 03ce85d0 ACPI PM1a Control
00:00:19.931 4008-4008 03ce8550 6e4830a0 6dfaaec0 03ce85d0 ACPI PM Timer
00:00:19.931 4020-4020 03ce8550 6e483100 6e483160 03ce85d0 ACPI GPE0 Status
00:00:19.931 4021-4021 03ce8550 6e483130 6e483190 03ce85d0 ACPI GPE0 Enable
00:00:19.931 4040-4040 03ce8550 6dfaae30 6e482a40 03ce85d0 ACPI Battery status index
00:00:19.931 4044-4044 03ce8550 6e482a80 6dfaaec0 03ce85d0 ACPI Battery status data
00:00:19.931 4048-4048 03ce8550 6dfaae30 6e482b20 03ce85d0 ACPI system info index
00:00:19.931 404c-404c 03ce8550 6e482b80 6e482e50 03ce85d0 ACPI system info data
00:00:19.931 4050-4050 03ce8550 6dfaae30 6e483200 03ce85d0 ACPI Reset
00:00:19.931 442e-442e 03ce8550 6dfaae30 6e4831c0 03ce85d0 ACPI SMI
00:00:19.931 8900-8900 02b713f8 6e4bed00 6e4bed10 00000000 Bochs PC BIOS - Shutdown
00:00:19.931 d000-d007 03ce4020 6e4b8070 6e4b81d0 00000000 ATA Bus Master DMA
00:00:19.931 d008-d00f 03ce4020 6e4b8070 6e4b81d0 00000001 ATA Bus Master DMA
00:00:19.931 d020-d02f 03ce52c0 6e498a80 6e498ba0 00000000 PCNet ARPOM
00:00:19.931 d030-d03f 03ce52c0 6e49bb80 6e49bca0 00000000 PCNet
00:00:19.931 d040-d040 03cd0e80 6dfaae30 6e49d130 03cd0f00 VMMDev Request Handler
00:00:19.931 d100-d1ff 02bcdf68 6e48ea40 6e48efc0 02bcdfe8 ICHAC97 NAM
00:00:19.932 d200-d23f 02bcdf68 6e48e4b0 6e48e790 02bcdfe8 ICHAC97 NABM
00:00:19.932 I/O Port R0 ranges (pVM=00c40000)
00:00:19.932 Range     pDevIns  In       Out      pvUser   Description
00:00:19.932 0020-0021 03ccf910 94e23430 94e234c0 00000000 i8259 PIC #0
00:00:19.932 0040-0043 03ccfd00 94e22a40 94e22b40 00000000 i8254 Programmable Interval Timer
00:00:19.932 0060-0060 03ccef50 94e22610 94e22660 00000000 PC Keyboard - Data
00:00:19.932 0064-0064 03ccef50 94e226b0 94e22700 00000000 PC Keyboard - Command / Status
00:00:19.932 0070-0073 03cd0070 94e23de0 94e23f90 00000000 MC146818 RTC/CMOS
00:00:19.932 00a0-00a1 03ccf910 94e23430 94e234c0 00000001 i8259 PIC #1
00:00:19.932 0170-0177 03ce4020 94e25a10 94e25990 00000001 ATA I/O Base 1
00:00:19.932 01ce-01ce 027d0000 94e202e0 94e20150 00000000 VGA/VBE - Index (GC)
00:00:19.932 01cf-01cf 027d0000 94e20200 94e20090 00000000 VGA/VBE - Data (GC)
00:00:19.932 01f0-01f7 03ce4020 94e25a10 94e25990 00000000 ATA I/O Base 1
00:00:19.932 0376-0376 03ce4020 94e25b30 94e25ad0 00000001 ATA I/O Base 2
00:00:19.932 03b4-03b5 027d0000 94e1fff0 94e1ff60 00000000 VGA - 3b4 (GC)
00:00:19.932 03b7-03b7 027d0000 94e21090 94e210a0 00000000 VGA BIOS debug/panic
00:00:19.932 03ba-03ba 027d0000 94e1fff0 94e1ff60 00000000 VGA - 3ba (GC)
00:00:19.932 03c0-03cf 027d0000 94e1fff0 94e1ff60 00000000 VGA - 3c0 (GC)
00:00:19.932 03d4-03d5 027d0000 94e1fff0 94e1ff60 00000000 VGA - 3d4 (GC)
00:00:19.932 03da-03da 027d0000 94e1fff0 94e1ff60 00000000 VGA - 3da (GC)
00:00:19.932 03f6-03f6 03ce4020 94e25b30 94e25ad0 00000000 ATA I/O Base 2
00:00:19.932 04d0-04d0 03ccf910 94e23520 94e23580 03ccf990 i8259 PIC #0 - elcr
00:00:19.932 04d1-04d1 03ccf910 94e23520 94e23580 03ccf9b0 i8259 PIC #1 - elcr
00:00:19.932 0cf8-0cf8 03cce3e0 94e1d710 94e1d6c0 00000000 i440FX (PCI)
00:00:19.932 0cfc-0cff 03cce3e0 94e1d7f0 94e1d760 00000000 i440FX (PCI)
00:00:19.932 4008-4008 03ce8550 94e22750 00000000 00000000 ACPI PM Timer
00:00:19.932 d000-d007 03ce4020 94e256c0 94e25820 00000000 ATA Bus Master DMA
00:00:19.932 d008-d00f 03ce4020 94e256c0 94e25820 00000001 ATA Bus Master DMA
00:00:19.932 d020-d02f 03ce52c0 94e27f80 94e280a0 00000000 PCNet aprom
00:00:19.932 d030-d03f 03ce52c0 94e28690 94e28f00 00000000 PCNet
00:00:19.932 I/O Port GC ranges (pVM=00c40000)
00:00:19.932 Range     pDevIns  In       Out      pvUser   Description
00:00:19.932 0020-0021 fec30910 ff12e260 ff12e2f0 00000000 i8259 PIC #0
00:00:19.932 0040-0043 fec30d00 ff12d870 ff12d970 00000000 i8254 Programmable Interval Timer
00:00:19.932 0060-0060 fec2ff50 ff12d440 ff12d490 00000000 PC Keyboard - Data
00:00:19.932 0061-0061 fec30d00 ff12da80 00000000 00000000 PC Speaker
00:00:19.932 0064-0064 fec2ff50 ff12d4e0 ff12d530 00000000 PC Keyboard - Command / Status
00:00:19.932 0070-0073 fec31070 ff12ec10 ff12edc0 00000000 MC146818 RTC/CMOS
00:00:19.932 00a0-00a1 fec30910 ff12e260 ff12e2f0 00000001 i8259 PIC #1
00:00:19.932 0170-0177 fec45020 ff130850 ff1307d0 00000001 ATA I/O Base 1
00:00:19.932 01ce-01ce ff146000 ff12b010 ff12ae80 00000000 VGA/VBE - Index (GC)
00:00:19.932 01cf-01cf ff146000 ff12af30 ff12adc0 00000000 VGA/VBE - Data (GC)
00:00:19.932 01f0-01f7 fec45020 ff130850 ff1307d0 00000000 ATA I/O Base 1
00:00:19.932 0376-0376 fec45020 ff130bd0 ff130b70 00000001 ATA I/O Base 2
00:00:19.932 03b4-03b5 ff146000 ff12ad20 ff12ac90 00000000 VGA - 3b4 (GC)
00:00:19.932 03ba-03ba ff146000 ff12ad20 ff12ac90 00000000 VGA - 3ba (GC)
00:00:19.932 03c0-03cf ff146000 ff12ad20 ff12ac90 00000000 VGA - 3c0 (GC)
00:00:19.932 03d4-03d5 ff146000 ff12ad20 ff12ac90 00000000 VGA - 3d4 (GC)
00:00:19.932 03da-03da ff146000 ff12ad20 ff12ac90 00000000 VGA - 3da (GC)
00:00:19.932 03f6-03f6 fec45020 ff130bd0 ff130b70 00000000 ATA I/O Base 2
00:00:19.932 04d0-04d0 fec30910 ff12e350 ff12e3b0 fec30990 i8259 PIC #0 - elcr
00:00:19.932 04d1-04d1 fec30910 ff12e350 ff12e3b0 fec309b0 i8259 PIC #1 - elcr
00:00:19.932 0cf8-0cf8 fec2f3e0 ff128710 ff1286c0 00000000 i440FX (PCI)
00:00:19.932 0cfc-0cff fec2f3e0 ff1287f0 ff128760 00000000 i440FX (PCI)
00:00:19.932 4008-4008 fec49550 ff12d580 00000000 00000000 ACPI PM Timer
00:00:19.933 d000-d007 fec45020 ff130500 ff130660 00000000 ATA Bus Master DMA
00:00:19.933 d008-d00f fec45020 ff130500 ff130660 00000001 ATA Bus Master DMA
00:00:19.933 d020-d02f fec462c0 ff133020 ff133140 00000000 PCNet aprom
00:00:19.933 d030-d03f fec462c0 ff133730 ff133fa0 00000000 PCNet
00:00:19.933 R3 Read  Ports: 0x70-0x74 03cd03c0 MC146818 RTC/CMOS
00:00:19.933 R3 Write Ports: 0x70-0x74 03cd03c0 MC146818 RTC/CMOS
00:00:19.933 !!
00:00:19.933 !! {lapic}
00:00:19.933 !!
00:00:19.933 Invalid argument. Recognized arguments are 'basic', 'lvt', 'timer'.
00:00:19.933 !!
00:00:19.933 !! {ldt}
00:00:19.933 !!
00:00:19.933 Shadow LDT (GCAddr=feeba000 limit=0x0):
00:00:19.933 !!
00:00:19.933 !! {ldtguest}
00:00:19.933 !!
00:00:19.933 Guest LDT (Sel=0): Null-Selector
00:00:19.933 !!
00:00:19.933 !! {mmio}
00:00:19.933 !!
00:00:19.933 MMIO ranges (pVM=00c40000)
00:00:19.933 GC Phys Range                     pDevIns  Read     Write    Fill     pvUser   Description
00:00:19.933 00000000000a0000-00000000000bffff 027d0000 6e4a5a10 6e4a5ca0 6e4a59c0 00000000 VGA - VGA Video Buffer
00:00:19.933                                R0 027d0000 94e20a60 94e20cf0 94e20a10 00000000
00:00:19.933                                RC ff146000 ff12b7c0 ff12bac0 ff12b760 00000000
00:00:19.933 00000000f0000000-00000000f0000fff 03ce52c0 6e49bd70 6e49be80 00000000 03ce5340 PCNet
00:00:19.933                                R0 00000000 00000000 00000000 00000000 00000000
00:00:19.933                                RC 00000000 00000000 00000000 00000000 00000000
00:00:19.933 00000000fee00000-00000000fee00fff 03ccf480 6def2980 6def46a0 00000000 03ccf500 APIC Memory
00:00:19.933                                R0 03ccf480 94e38350 94e38dd0 00000000 00000000
00:00:19.933                                RC fec30480 ff143320 ff143da0 00000000 00000000
00:00:19.933 !!
00:00:19.933 !! {nat0}
00:00:19.933 !!
00:00:19.933 NAT parameters: MTU=1500
00:00:19.933 NAT TCP ports:
00:00:19.933 NAT UDP ports:
00:00:19.933 NAT ARP cache:
00:00:19.933 NAT rules:
00:00:19.933 !!
00:00:19.933 !! {pciirq}
00:00:19.933 !!
00:00:19.933 PCI interrupt router at: 00:01:0
00:00:19.933 PIRQA -> IRQ5
00:00:19.933 PIRQB -> IRQ11
00:00:19.933 PIRQC -> IRQ10
00:00:19.933 PIRQD -> IRQ9
00:00:19.933 !!
00:00:19.933 !! {pcnet0}
00:00:19.933 !!
00:00:19.933 pcnet #0: port=d020 mmio=f0000000 mac-cfg=08:00:27:33:79:4d Am79C970A
00:00:19.933 CSR0=0x0004:
00:00:19.933 CSR1=0x0000:
00:00:19.934 CSR2=0x0000:
00:00:19.934 CSR3=0x0000: BSWP=0 EMBA=0 DXMT2PD=0 LAPPEN=0 DXSUFLO=0 IDONM=0 TINTM=0 RINTM=0 MERRM=0 MISSM=0 BABLM=0
00:00:19.934 CSR4=0x0115: JABM=1 JAB=0 TXSTRM=1 TXSTRT=0 RCVCOOM=1 RCVCCO=0 UINT=0 UINTCMD=0
00:00:19.934               MFCOM=1 MFCO=0 ASTRP_RCV=0 APAD_XMT=0 DPOLL=0 TIMER=0 EMAPLUS=0 EN124=0
00:00:19.934 CSR5=0x0000:
00:00:19.934 CSR6=0x0000: RLEN=0x0* TLEN=0x0* [* encoded]
00:00:19.934 CSR8..11=0x0000,0x0000,0x0000,0x0000: LADRF=0x0000000000000000
00:00:19.934 CSR12..14=0x0008,0x3327,0x4d79: PADR=08:00:27:33:79:4d (Current MAC Address)
00:00:19.934 CSR15=0x0000: DXR=0 DTX=0 LOOP=0 DXMTFCS=0 FCOLL=0 DRTY=0 INTL=0 PORTSEL=0 LTR=0
00:00:19.934               MENDECL=0 DAPC=0 DLNKTST=0 DRCVPV=0 DRCVBC=0 PROM=0
00:00:19.934 CSR46=0x0000: POLL=0x0000 (Poll Time Counter)
00:00:19.934 CSR47=0x0000: POLLINT=0x0000 (Poll Time Interval)
00:00:19.934 CSR58=0x0200: SWSTYLE=0 C-LANCE / PCnet-ISA SSIZE32=0 CSRPCNET=1 APERRENT=0
00:00:19.934 CSR112=0000: MFC=0000 (Missed receive Frame Count)
00:00:19.934 CSR122=0000: RCVALGN=0000 (Receive Frame Align)
00:00:19.934 CSR124=0000: RPA=0000 (Runt Packet Accept)
00:00:19.934 RCVRL=0001 RCVRC=0001  GCRDRA=0 
00:00:19.934 CRDA=00000000 CRBA=00000000 CRBC=000 CRST=0000
00:00:19.934 NRDA=00000000 NRBA=00000000 NRBC=000 NRST=0000
00:00:19.934 NNRDA=00000000
00:00:19.934 XMTRL=0001 XMTRC=0001  GCTDRA=00000000 BADX=00000000
00:00:19.934 PXDA=00000000               PXBC=000 PXST=0000
00:00:19.934 CXDA=00000000 CXBA=00000000 CXBC=000 CXST=0000
00:00:19.934 NXDA=00000000 NXBA=00000000 NXBC=000 NXST=0000
00:00:19.934 NNXDA=00000000
00:00:19.934 !!
00:00:19.934 !! {phys}
00:00:19.934 !!
00:00:19.934 RAM ranges (pVM=00c40000)
00:00:19.934 GC Phys Range                     pvHC    
00:00:19.934 0000000000000000-000000000fffffff 00000000 Base RAM
00:00:19.934 00000000e0000000-00000000e0bfffff 05580000 VRam
00:00:19.934 00000000f0000000-00000000f0000fff 00000000 PCNet
00:00:19.934 00000000f0080000-00000000f00fffff 03430000 PCNetShMem
00:00:19.934 00000000f0400000-00000000f07fffff 04eb0000 VMMDev
00:00:19.934 00000000f0800000-00000000f0803fff 02060000 VMMDev Heap
00:00:19.934 00000000fee00000-00000000fee00fff 00000000 APIC Memory
00:00:19.934 00000000ffff0000-00000000ffffffff 00000000 PC BIOS - 0xffffffff
00:00:19.934 !!
00:00:19.934 !! {pic}
00:00:19.934 !!
00:00:19.934 PIC0:
00:00:19.934   last_irr                  = 01
00:00:19.934   irr                       = 01
00:00:19.934   imr                       = fb
00:00:19.934   isr                       = 00
00:00:19.934   priority_add              = 00
00:00:19.934   irq_base                  = 30
00:00:19.934   read_reg_select           = 00
00:00:19.934   poll                      = 00
00:00:19.934   special_mask              = 00
00:00:19.934   init_state                = 00
00:00:19.934   auto_eoi                  = 00
00:00:19.934   rotate_on_auto_eoi        = 00
00:00:19.935   special_fully_nested_mode = 00
00:00:19.935   init4                     = 01
00:00:19.935   elcr                      = 20
00:00:19.935   elcr_mask                 = f8
00:00:19.935 PIC1:
00:00:19.935   last_irr                  = 00
00:00:19.935   irr                       = 00
00:00:19.935   imr                       = ff
00:00:19.935   isr                       = 00
00:00:19.935   priority_add              = 00
00:00:19.935   irq_base                  = 38
00:00:19.935   read_reg_select           = 00
00:00:19.935   poll                      = 00
00:00:19.935   special_mask              = 00
00:00:19.935   init_state                = 00
00:00:19.935   auto_eoi                  = 00
00:00:19.935   rotate_on_auto_eoi        = 00
00:00:19.935   special_fully_nested_mode = 00
00:00:19.935   init4                     = 01
00:00:19.935   elcr                      = 0e
00:00:19.935   elcr_mask                 = de
00:00:19.935 !!
00:00:19.935 !! {pit}
00:00:19.935 !!
00:00:19.935 PIT (i8254) channel 0 status: irq=0x0
00:00:19.935       count=00010000  latched_count=0000  count_latched=00
00:00:19.935            status=00   status_latched=00     read_state=03
00:00:19.935       write_state=03      write_latch=00        rw_mode=03
00:00:19.935              mode=02              bcd=00           gate=01
00:00:19.935   count_load_time=000000009a03a1e1 next_transition_time=00000003f706a579
00:00:19.935       u64ReloadTS=00000003f3c08d20            u64NextTS=00000003f706a579
00:00:19.935 PIT (i8254) channel 1 status: irq=0x0
00:00:19.935       count=00010000  latched_count=0000  count_latched=00
00:00:19.935            status=00   status_latched=00     read_state=00
00:00:19.935       write_state=00      write_latch=00        rw_mode=00
00:00:19.935              mode=03              bcd=00           gate=01
00:00:19.935   count_load_time=0000000000000000 next_transition_time=0000000000000000
00:00:19.935       u64ReloadTS=0000000000000000            u64NextTS=ffffffffffffffff
00:00:19.935 PIT (i8254) channel 2 status: irq=0x0
00:00:19.935       count=00010000  latched_count=0000  count_latched=00
00:00:19.935            status=00   status_latched=00     read_state=00
00:00:19.935       write_state=00      write_latch=00        rw_mode=00
00:00:19.935              mode=03              bcd=00           gate=00
00:00:19.935   count_load_time=0000000000000000 next_transition_time=0000000000000000
00:00:19.935       u64ReloadTS=0000000000000000            u64NextTS=ffffffffffffffff
00:00:19.935 speaker_data_on=0x0
00:00:19.935 !!
00:00:19.935 !! {vbe}
00:00:19.935 !!
00:00:19.935 VBE disabled
00:00:19.935 !!
00:00:19.935 !! {vga}
00:00:19.935 !!
00:00:19.935 pixel clock: 28.322 MHz
00:00:19.935 double scanning off
00:00:19.935 double clocking off
00:00:19.935 htotal: 900 px (100 cclk)
00:00:19.935 vtotal: 449 px
00:00:19.935 hdisp : 720 px (80 cclk)
00:00:19.935 vdisp : 400 px
00:00:19.935 start : 0x0
00:00:19.935 char height 16
00:00:19.935 text mode 80x25
00:00:19.935 !!
00:00:19.935 !! {vgaar}
00:00:19.935 !!
00:00:19.935 VGA Attribute Controller (3C0): index reg 20, flip-flop: 0 (index)
00:00:19.935  Palette: 00 01 02 03 04 05 06 07 08 09 0A 0B 0C 0D 0E 0F
00:00:19.936  AR10:0C AR11:00 AR12:0F AR13:08 AR14:00
00:00:19.936 !!
00:00:19.936 !! {vgacr}
00:00:19.936 !!
00:00:19.936 VGA CRTC (3D5): CRTC index 3D4:0F
00:00:19.936  CR00:5F CR01:4F CR02:50 CR03:82 CR04:55 CR05:81 CR06:BF CR07:1F CR08:00 CR09:4F
00:00:19.936  CR0A:0E CR0B:0F CR0C:00 CR0D:00 CR0E:00 CR0F:00 CR10:9C CR11:8E CR12:8F CR13:28
00:00:19.936  CR14:1F CR15:96 CR16:B9 CR17:A3 CR18:FF
00:00:19.936 !!
00:00:19.936 !! {vgadac}
00:00:19.936 !!
00:00:19.937 VGA DAC contents:
00:00:19.937  00: 00 00 00
00:00:19.937  01: 00 00 2A
00:00:19.937  02: 00 2A 00
00:00:19.937  03: 00 2A 2A
00:00:19.937  04: 2A 00 00
00:00:19.937  05: 2A 00 2A
00:00:19.937  06: 2A 2A 00
00:00:19.937  07: 2A 2A 2A
00:00:19.937  08: 00 00 15
00:00:19.937  09: 00 00 3F
00:00:19.937  0A: 00 2A 15
00:00:19.937  0B: 00 2A 3F
00:00:19.937  0C: 2A 00 15
00:00:19.937  0D: 2A 00 3F
00:00:19.937  0E: 2A 2A 15
00:00:19.937  0F: 2A 2A 3F
00:00:19.937  10: 00 15 00
00:00:19.937  11: 00 15 2A
00:00:19.937  12: 00 3F 00
00:00:19.937  13: 00 3F 2A
00:00:19.937  14: 2A 15 00
00:00:19.937  15: 2A 15 2A
00:00:19.937  16: 2A 3F 00
00:00:19.937  17: 2A 3F 2A
00:00:19.937  18: 00 15 15
00:00:19.937  19: 00 15 3F
00:00:19.937  1A: 00 3F 15
00:00:19.937  1B: 00 3F 3F
00:00:19.937  1C: 2A 15 15
00:00:19.937  1D: 2A 15 3F
00:00:19.937  1E: 2A 3F 15
00:00:19.937  1F: 2A 3F 3F
00:00:19.937  20: 15 00 00
00:00:19.937  21: 15 00 2A
00:00:19.937  22: 15 2A 00
00:00:19.937  23: 15 2A 2A
00:00:19.937  24: 3F 00 00
00:00:19.937  25: 3F 00 2A
00:00:19.938  26: 3F 2A 00
00:00:19.938  27: 3F 2A 2A
00:00:19.938  28: 15 00 15
00:00:19.938  29: 15 00 3F
00:00:19.938  2A: 15 2A 15
00:00:19.938  2B: 15 2A 3F
00:00:19.938  2C: 3F 00 15
00:00:19.938  2D: 3F 00 3F
00:00:19.938  2E: 3F 2A 15
00:00:19.938  2F: 3F 2A 3F
00:00:19.938  30: 15 15 00
00:00:19.938  31: 15 15 2A
00:00:19.938  32: 15 3F 00
00:00:19.938  33: 15 3F 2A
00:00:19.938  34: 3F 15 00
00:00:19.938  35: 3F 15 2A
00:00:19.938  36: 3F 3F 00
00:00:19.938  37: 3F 3F 2A
00:00:19.938  38: 15 15 15
00:00:19.938  39: 15 15 3F
00:00:19.938  3A: 15 3F 15
00:00:19.938  3B: 15 3F 3F
00:00:19.938  3C: 3F 15 15
00:00:19.938  3D: 3F 15 3F
00:00:19.938  3E: 3F 3F 15
00:00:19.938  3F: 3F 3F 3F
00:00:19.938  40: 00 00 00
00:00:19.938  41: 00 00 00
00:00:19.938  42: 00 00 00
00:00:19.938  43: 00 00 00
00:00:19.938  44: 00 00 00
00:00:19.938  45: 00 00 00
00:00:19.938  46: 00 00 00
00:00:19.938  47: 00 00 00
00:00:19.938  48: 00 00 00
00:00:19.938  49: 00 00 00
00:00:19.938  4A: 00 00 00
00:00:19.938  4B: 00 00 00
00:00:19.938  4C: 00 00 00
00:00:19.938  4D: 00 00 00
00:00:19.938  4E: 00 00 00
00:00:19.938  4F: 00 00 00
00:00:19.938  50: 00 00 00
00:00:19.938  51: 00 00 00
00:00:19.938  52: 00 00 00
00:00:19.938  53: 00 00 00
00:00:19.938  54: 00 00 00
00:00:19.939  55: 00 00 00
00:00:19.939  56: 00 00 00
00:00:19.939  57: 00 00 00
00:00:19.939  58: 00 00 00
00:00:19.939  59: 00 00 00
00:00:19.939  5A: 00 00 00
00:00:19.939  5B: 00 00 00
00:00:19.939  5C: 00 00 00
00:00:19.939  5D: 00 00 00
00:00:19.939  5E: 00 00 00
00:00:19.939  5F: 00 00 00
00:00:19.939  60: 00 00 00
00:00:19.939  61: 00 00 00
00:00:19.939  62: 00 00 00
00:00:19.939  63: 00 00 00
00:00:19.939  64: 00 00 00
00:00:19.939  65: 00 00 00
00:00:19.939  66: 00 00 00
00:00:19.939  67: 00 00 00
00:00:19.939  68: 00 00 00
00:00:19.939  69: 00 00 00
00:00:19.939  6A: 00 00 00
00:00:19.939  6B: 00 00 00
00:00:19.939  6C: 00 00 00
00:00:19.939  6D: 00 00 00
00:00:19.939  6E: 00 00 00
00:00:19.939  6F: 00 00 00
00:00:19.939  70: 00 00 00
00:00:19.939  71: 00 00 00
00:00:19.939  72: 00 00 00
00:00:19.939  73: 00 00 00
00:00:19.939  74: 00 00 00
00:00:19.939  75: 00 00 00
00:00:19.939  76: 00 00 00
00:00:19.939  77: 00 00 00
00:00:19.939  78: 00 00 00
00:00:19.939  79: 00 00 00
00:00:19.939  7A: 00 00 00
00:00:19.939  7B: 00 00 00
00:00:19.939  7C: 00 00 00
00:00:19.939  7D: 00 00 00
00:00:19.939  7E: 00 00 00
00:00:19.939  7F: 00 00 00
00:00:19.939  80: 00 00 00
00:00:19.939  81: 00 00 00
00:00:19.939  82: 00 00 00
00:00:19.939  83: 00 00 00
00:00:19.940  84: 00 00 00
00:00:19.940  85: 00 00 00
00:00:19.940  86: 00 00 00
00:00:19.940  87: 00 00 00
00:00:19.940  88: 00 00 00
00:00:19.940  89: 00 00 00
00:00:19.940  8A: 00 00 00
00:00:19.940  8B: 00 00 00
00:00:19.940  8C: 00 00 00
00:00:19.940  8D: 00 00 00
00:00:19.940  8E: 00 00 00
00:00:19.940  8F: 00 00 00
00:00:19.940  90: 00 00 00
00:00:19.940  91: 00 00 00
00:00:19.940  92: 00 00 00
00:00:19.940  93: 00 00 00
00:00:19.940  94: 00 00 00
00:00:19.940  95: 00 00 00
00:00:19.940  96: 00 00 00
00:00:19.940  97: 00 00 00
00:00:19.940  98: 00 00 00
00:00:19.940  99: 00 00 00
00:00:19.940  9A: 00 00 00
00:00:19.940  9B: 00 00 00
00:00:19.940  9C: 00 00 00
00:00:19.940  9D: 00 00 00
00:00:19.940  9E: 00 00 00
00:00:19.940  9F: 00 00 00
00:00:19.940  A0: 00 00 00
00:00:19.940  A1: 00 00 00
00:00:19.940  A2: 00 00 00
00:00:19.940  A3: 00 00 00
00:00:19.940  A4: 00 00 00
00:00:19.940  A5: 00 00 00
00:00:19.940  A6: 00 00 00
00:00:19.940  A7: 00 00 00
00:00:19.940  A8: 00 00 00
00:00:19.940  A9: 00 00 00
00:00:19.940  AA: 00 00 00
00:00:19.940  AB: 00 00 00
00:00:19.940  AC: 00 00 00
00:00:19.940  AD: 00 00 00
00:00:19.940  AE: 00 00 00
00:00:19.940  AF: 00 00 00
00:00:19.940  B0: 00 00 00
00:00:19.940  B1: 00 00 00
00:00:19.941  B2: 00 00 00
00:00:19.941  B3: 00 00 00
00:00:19.941  B4: 00 00 00
00:00:19.941  B5: 00 00 00
00:00:19.941  B6: 00 00 00
00:00:19.941  B7: 00 00 00
00:00:19.941  B8: 00 00 00
00:00:19.941  B9: 00 00 00
00:00:19.941  BA: 00 00 00
00:00:19.941  BB: 00 00 00
00:00:19.941  BC: 00 00 00
00:00:19.941  BD: 00 00 00
00:00:19.941  BE: 00 00 00
00:00:19.941  BF: 00 00 00
00:00:19.941  C0: 00 00 00
00:00:19.941  C1: 00 00 00
00:00:19.941  C2: 00 00 00
00:00:19.941  C3: 00 00 00
00:00:19.941  C4: 00 00 00
00:00:19.941  C5: 00 00 00
00:00:19.941  C6: 00 00 00
00:00:19.941  C7: 00 00 00
00:00:19.941  C8: 00 00 00
00:00:19.941  C9: 00 00 00
00:00:19.941  CA: 00 00 00
00:00:19.941  CB: 00 00 00
00:00:19.941  CC: 00 00 00
00:00:19.941  CD: 00 00 00
00:00:19.941  CE: 00 00 00
00:00:19.941  CF: 00 00 00
00:00:19.941  D0: 00 00 00
00:00:19.941  D1: 00 00 00
00:00:19.941  D2: 00 00 00
00:00:19.941  D3: 00 00 00
00:00:19.941  D4: 00 00 00
00:00:19.941  D5: 00 00 00
00:00:19.941  D6: 00 00 00
00:00:19.941  D7: 00 00 00
00:00:19.941  D8: 00 00 00
00:00:19.941  D9: 00 00 00
00:00:19.941  DA: 00 00 00
00:00:19.941  DB: 00 00 00
00:00:19.941  DC: 00 00 00
00:00:19.941  DD: 00 00 00
00:00:19.941  DE: 00 00 00
00:00:19.941  DF: 00 00 00
00:00:19.942  E0: 00 00 00
00:00:19.942  E1: 00 00 00
00:00:19.942  E2: 00 00 00
00:00:19.942  E3: 00 00 00
00:00:19.942  E4: 00 00 00
00:00:19.942  E5: 00 00 00
00:00:19.942  E6: 00 00 00
00:00:19.942  E7: 00 00 00
00:00:19.942  E8: 00 00 00
00:00:19.942  E9: 00 00 00
00:00:19.942  EA: 00 00 00
00:00:19.942  EB: 00 00 00
00:00:19.942  EC: 00 00 00
00:00:19.942  ED: 00 00 00
00:00:19.942  EE: 00 00 00
00:00:19.942  EF: 00 00 00
00:00:19.942  F0: 00 00 00
00:00:19.942  F1: 00 00 00
00:00:19.942  F2: 00 00 00
00:00:19.942  F3: 00 00 00
00:00:19.942  F4: 00 00 00
00:00:19.942  F5: 00 00 00
00:00:19.942  F6: 00 00 00
00:00:19.942  F7: 00 00 00
00:00:19.942  F8: 00 00 00
00:00:19.942  F9: 00 00 00
00:00:19.942  FA: 00 00 00
00:00:19.942  FB: 00 00 00
00:00:19.942  FC: 00 00 00
00:00:19.942  FD: 00 00 00
00:00:19.942  FE: 00 00 00
00:00:19.942  FF: 00 00 00
00:00:19.942 !!
00:00:19.942 !! {vgagr}
00:00:19.942 !!
00:00:19.942 VGA Graphics Controller (3CF): GR index 3CE:05
00:00:19.942  GR00:00 GR01:00 GR02:00 GR03:00 GR04:00 GR05:10 GR06:0E GR07:0F GR08:FF
00:00:19.943 !!
00:00:19.943 !! {vgasr}
00:00:19.943 !!
00:00:19.943 VGA Sequencer (3C5): SR index 3C4:03
00:00:19.943  SR00:03 SR01:00 SR02:03 SR03:00 SR04:02
00:00:19.943 !!
00:00:19.943 !! {vgatext}
00:00:19.943 !!
00:00:19.943 --------------------------------------------------------------------------------
00:00:19.944                                                                                 
00:00:19.946                                                                                 
00:00:19.947                                                                                 
00:00:19.948                                                                                 
00:00:19.949                                                                                 
00:00:19.951                                                                                 
00:00:19.952                                                                                 
00:00:19.954                                                                                 
00:00:19.955                                                                                 
00:00:19.956                                                                                 
00:00:19.958                                                                                 
00:00:19.959                                                                                 
00:00:19.961                                                                                 
00:00:19.962                                                                                 
00:00:19.963                                                                                 
00:00:19.964                                                                                 
00:00:19.966                                                                                 
00:00:19.967                                                                                 
00:00:19.968                                                                                 
00:00:19.970                                                                                 
00:00:19.971                                                                                 
00:00:19.973                                                                                 
00:00:19.974                                                                                 
00:00:19.975                                                                                 
00:00:19.977                                                                                 
00:00:19.978 --------------------------------------------------------------------------------
00:00:19.979 !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
00:00:20.979 Changing the VM state from 'RUNNING' to 'GURU_MEDITATION'.
00:03:42.315 Console::powerDown(): A request to power off the VM has been issued (mMachineState=Stopping, InUninit=0)
00:03:42.323 Changing the VM state from 'GURU_MEDITATION' to 'POWERING_OFF'.
00:03:42.324 ****************** Guest state at power off ******************
00:03:42.324 Guest CPUM (VCPU 0) state: se
00:03:42.324 eax=00000046 ebx=c07dbe40 ecx=4da0edfd edx=00000000 esi=00000000 edi=c0761000
00:03:42.324 eip=c07a37db esp=c075ffb8 ebp=c075ffdc iopl=0      rf nv up ei pl nz na po nc
00:03:42.324 cs={0060 base=0000000000000000 limit=ffffffff flags=0000c09a} dr0=00000000 dr1=00000000
00:03:42.324 ds={007b base=0000000000000000 limit=ffffffff flags=0000c0f3} dr2=00000000 dr3=00000000
00:03:42.324 es={007b base=0000000000000000 limit=ffffffff flags=0000c0f3} dr4=00000000 dr5=00000000
00:03:42.324 fs={00d8 base=0000000000bc2000 limit=ffffffff flags=00008093} dr6=00000000 dr7=00000000
00:03:42.324 gs={00e0 base=00000000c1408620 limit=00000018 flags=00004091} cr0=8005003b cr2=ffdff000
00:03:42.324 ss={0068 base=0000000000000000 limit=ffffffff flags=0000c093} cr3=0084c000 cr4=00000690
00:03:42.324 gdtr=00000000c1400000:00ff  idtr=00000000c0761000:07ff  eflags=00010246
00:03:42.324 ldtr={0000 base=00000000 limit=00000000 flags=00000082}
00:03:42.324 tr  ={0080 base=c1406460 limit=0000206b flags=0000008b}
00:03:42.324 SysEnter={cs=0000 eip=00000000 esp=00000000}
00:03:42.324 FCW=037f FSW=0000 FTW=0000 FOP=0000 MXCSR=00001f80 MXCSR_MASK=0000ffff
00:03:42.324 FPUIP=00000000 CS=0000 Rsvrd1=0000  FPUDP=00000000 DS=0000 Rsvrd2=0000
00:03:42.324 ST(0)=FPR0={0000'00000000'00000000} t0 +0.0000000000000000000000 ^ 0
00:03:42.324 ST(1)=FPR1={0000'00000000'00000000} t0 +0.0000000000000000000000 ^ 0
00:03:42.324 ST(2)=FPR2={0000'00000000'00000000} t0 +0.0000000000000000000000 ^ 0
00:03:42.324 ST(3)=FPR3={0000'00000000'00000000} t0 +0.0000000000000000000000 ^ 0
00:03:42.324 ST(4)=FPR4={0000'00000000'00000000} t0 +0.0000000000000000000000 ^ 0
00:03:42.324 ST(5)=FPR5={0000'00000000'00000000} t0 +0.0000000000000000000000 ^ 0
00:03:42.324 ST(6)=FPR6={0000'00000000'00000000} t0 +0.0000000000000000000000 ^ 0
00:03:42.324 ST(7)=FPR7={0000'00000000'00000000} t0 +0.0000000000000000000000 ^ 0
00:03:42.324 XMM0 =00000000'00000000'00000000'00000000  XMM1 =00000000'00000000'00000000'00000000
00:03:42.324 XMM2 =00000000'00000000'00000000'00000000  XMM3 =00000000'00000000'00000000'00000000
00:03:42.324 XMM4 =00000000'00000000'00000000'00000000  XMM5 =00000000'00000000'00000000'00000000
00:03:42.324 XMM6 =00000000'00000000'00000000'00000000  XMM7 =00000000'00000000'00000000'00000000
00:03:42.324 XMM8 =00000000'00000000'00000000'00000000  XMM9 =00000000'00000000'00000000'00000000
00:03:42.324 XMM10=00000000'00000000'00000000'00000000  XMM11=00000000'00000000'00000000'00000000
00:03:42.324 XMM12=00000000'00000000'00000000'00000000  XMM13=00000000'00000000'00000000'00000000
00:03:42.324 XMM14=00000000'00000000'00000000'00000000  XMM15=00000000'00000000'00000000'00000000
00:03:42.324 EFER         =0000000000000000
00:03:42.324 PAT          =0007010600070106
00:03:42.324 STAR         =0000000000000000
00:03:42.324 CSTAR        =0000000000000000
00:03:42.324 LSTAR        =0000000000000000
00:03:42.324 SFMASK       =0000000000000000
00:03:42.324 KERNELGSBASE =0000000000000000
00:03:42.324 ***
00:03:42.324 Guest paging mode:  32-bit, changed 106582 times, A20 enabled
00:03:42.324 Shadow paging mode: PAE
00:03:42.324 Host paging mode:   PAE+G
00:03:42.324 ***
00:03:42.324 Active Timers (pVM=00c40000)
00:03:42.324 pTimerR3 offNext  offPrev  offSched Clock               Time             Expire HzHint State                     Description
00:03:42.324 03ce3e60 000066f0 00000000 00000000 Real             1422582            1220164      0 2-ACTIVE                  VGA Refresh Timer
00:03:42.325 03cea550 ffffffa0 ffff9910 00000000 Real             1422583            1220167      0 2-ACTIVE                  EMT Yielder
00:03:42.325 03cea4f0 00000000 00000060 00000000 Real             1422583            1221065      0 2-ACTIVE                  CPU Load Timer
00:03:42.325 03ce84f0 00000000 00000000 00000000 Virt         17256044675        17260903747      0 2-ACTIVE                  Audio timer
00:03:42.325 03cd0360 fffffb70 00000000 00000000 VrSy         16990000000        16990244140      0 2-ACTIVE                  MC146818 RTC/CMOS - Second2
00:03:42.325 03ccfed0 00019ee0 00000490 00000000 VrSy         16990000000        17029309817     18 2-ACTIVE                  i8254 Programmable Interval Timer
00:03:42.325 03ce9db0 00000000 fffe6120 00000000 VrSy         16990000000      1199864031601      0 2-ACTIVE                  ACPI Timer
00:03:42.325 ***
00:03:42.325 Shadow GDT (GCAddr=feea9000):
00:03:42.325 0060 - 0000ffff 00cfbb00 - base=00000000 limit=ffffffff dpl=1 CodeER Accessed Present Page 32-bit 
00:03:42.325 0068 - 0000ffff 00cfb300 - base=00000000 limit=ffffffff dpl=1 DataRW Accessed Present Page 32-bit 
00:03:42.325 0070 - 0000ffff 00cffb00 - base=00000000 limit=ffffffff dpl=3 CodeER Accessed Present Page 32-bit 
00:03:42.325 0078 - 0000ffff 00cff300 - base=00000000 limit=ffffffff dpl=3 DataRW Accessed Present Page 32-bit 
00:03:42.325 0090 - 0000ffff 0040bb00 - base=00000000 limit=0000ffff dpl=1 CodeER Accessed Present 32-bit 
00:03:42.325 0098 - 0000ffff 0000bb00 - base=00000000 limit=0000ffff dpl=1 CodeER Accessed Present 16-bit 
00:03:42.325 00a0 - 0000ffff 0000b300 - base=00000000 limit=0000ffff dpl=1 DataRW Accessed Present 16-bit 
00:03:42.325 00a8 - 00000000 0000b300 - base=00000000 limit=00000000 dpl=1 DataRW Accessed Present 16-bit 
00:03:42.325 00b0 - 00000000 0000b300 - base=00000000 limit=00000000 dpl=1 DataRW Accessed Present 16-bit 
00:03:42.325 00b8 - 0000ffff 0040bb00 - base=00000000 limit=0000ffff dpl=1 CodeER Accessed Present 32-bit 
00:03:42.325 00c0 - 0000ffff 0000bb00 - base=00000000 limit=0000ffff dpl=1 CodeER Accessed Present 16-bit 
00:03:42.325 00c8 - 0000ffff 0040b300 - base=00000000 limit=0000ffff dpl=1 DataRW Accessed Present 32-bit 
00:03:42.325 00d0 - 0000ffff 00cfb300 - base=00000000 limit=ffffffff dpl=1 DataRW Accessed Present Page 32-bit 
00:03:42.325 00d8 - 2000ffff 008fb3bc - base=00bc2000 limit=ffffffff dpl=1 DataRW Accessed Present Page 16-bit 
00:03:42.325 00e0 - 86200018 c140b140 - base=c1408620 limit=00000018 dpl=1 DataRO Accessed Present 32-bit 
00:03:42.325 ffd8 - 80d80087 fe0089c0 - base=fec080d8 limit=00000087 dpl=0 TSS32Avail Present 16-bit  HyperTSSTrap08
00:03:42.325 ffe0 - 80500087 fe008bc0 - base=fec08050 limit=00000087 dpl=0 TSS32Busy Present 16-bit  HyperTSS
00:03:42.325 ffe8 - 0000ffff 00af9b00 - base=00000000 limit=ffffffff dpl=0 CodeER Accessed Present Page 16-bit  HyperCS64
00:03:42.325 fff0 - 0000ffff 00cf9300 - base=00000000 limit=ffffffff dpl=0 DataRW Accessed Present Page 32-bit  HyperDS
00:03:42.325 fff8 - 0000ffff 00cf9b00 - base=00000000 limit=ffffffff dpl=0 CodeER Accessed Present Page 32-bit  HyperCS
00:03:42.325 ***
00:03:42.325 ************** End of Guest state at power off ***************
00:03:42.346 Changing the VM state from 'POWERING_OFF' to 'OFF'.
00:03:42.350 Changing the VM state from 'OFF' to 'DESTROYING'.
00:03:42.350 ************************* Statistics *************************
00:03:42.350 /Devices/IDE0/ATA0/Unit0/AtapiDMA        0 times
00:03:42.350 /Devices/IDE0/ATA0/Unit0/AtapiPIO      369 times
00:03:42.350 /Devices/IDE0/ATA0/Unit0/DMA            0 times
00:03:42.350 /Devices/IDE0/ATA0/Unit0/PIO            0 times
00:03:42.350 /Devices/IDE0/ATA0/Unit0/ReadBytes 14295040 bytes
00:03:42.350 /Devices/IDE0/ATA0/Unit0/WrittenBytes        0 bytes
00:03:42.350 /Devices/IDE0/ATA0/Unit1/AtapiDMA        0 times
00:03:42.350 /Devices/IDE0/ATA0/Unit1/AtapiPIO        0 times
00:03:42.350 /Devices/IDE0/ATA0/Unit1/DMA            0 times
00:03:42.350 /Devices/IDE0/ATA0/Unit1/PIO            1 times
00:03:42.350 /Devices/IDE0/ATA0/Unit1/ReadBytes        0 bytes
00:03:42.350 /Devices/IDE0/ATA0/Unit1/WrittenBytes        0 bytes
00:03:42.351 /Devices/IDE0/ATA1/Unit0/AtapiDMA        0 times
00:03:42.351 /Devices/IDE0/ATA1/Unit0/AtapiPIO        0 times
00:03:42.351 /Devices/IDE0/ATA1/Unit0/DMA            0 times
00:03:42.351 /Devices/IDE0/ATA1/Unit0/PIO            0 times
00:03:42.351 /Devices/IDE0/ATA1/Unit0/ReadBytes        0 bytes
00:03:42.351 /Devices/IDE0/ATA1/Unit0/WrittenBytes        0 bytes
00:03:42.351 /Devices/IDE0/ATA1/Unit1/AtapiDMA        0 times
00:03:42.351 /Devices/IDE0/ATA1/Unit1/AtapiPIO        0 times
00:03:42.351 /Devices/IDE0/ATA1/Unit1/DMA            0 times
00:03:42.351 /Devices/IDE0/ATA1/Unit1/PIO            0 times
00:03:42.351 /Devices/IDE0/ATA1/Unit1/ReadBytes        0 bytes
00:03:42.351 /Devices/IDE0/ATA1/Unit1/WrittenBytes        0 bytes
00:03:42.351 /Devices/PCNet0/ReceiveBytes            0 bytes
00:03:42.351 /Devices/PCNet0/TransmitBytes           0 bytes
00:03:42.351 /Devices/VMMDev/BalloonChunks           0 count
00:03:42.351 /FT/Checkpoint/Network                  0 times
00:03:42.351 /FT/Checkpoint/Storage                  0 times
00:03:42.351 /FT/Received/Mem                        0 bytes
00:03:42.351 /FT/Received/State                      0 bytes
00:03:42.351 /FT/Sent/Mem                            0 bytes
00:03:42.351 /FT/Sent/State                          0 bytes
00:03:42.351 /FT/Sync/DeltaMem                       0 times
00:03:42.351 /FT/Sync/DeltaVM                        0 times
00:03:42.351 /FT/Sync/Full                           0 times
00:03:42.351 /GVMM/EMTs                              1 calls
00:03:42.351 /GVMM/HostCPUs                          2 calls
00:03:42.351 /GVMM/HostCpus/0                        0 
00:03:42.351 /GVMM/HostCpus/0/CurTimerHz             0 Hz
00:03:42.351 /GVMM/HostCpus/0/DesiredHz              0 Hz
00:03:42.351 /GVMM/HostCpus/0/PPTChanges             0 times
00:03:42.352 /GVMM/HostCpus/0/PPTStarts              0 times
00:03:42.352 /GVMM/HostCpus/0/idxCpuSet              0 
00:03:42.352 /GVMM/HostCpus/1                        1 
00:03:42.352 /GVMM/HostCpus/1/CurTimerHz             0 Hz
00:03:42.352 /GVMM/HostCpus/1/DesiredHz              0 Hz
00:03:42.352 /GVMM/HostCpus/1/PPTChanges             0 times
00:03:42.352 /GVMM/HostCpus/1/PPTStarts              0 times
00:03:42.352 /GVMM/HostCpus/1/idxCpuSet              1 
00:03:42.352 /GVMM/Sum/HaltBlocking                857 calls
00:03:42.352 /GVMM/Sum/HaltCalls                  1786 calls
00:03:42.352 /GVMM/Sum/HaltNotBlocking             929 calls
00:03:42.352 /GVMM/Sum/HaltTimeouts                675 calls
00:03:42.352 /GVMM/Sum/HaltWakeUps                   0 calls
00:03:42.352 /GVMM/Sum/PokeCalls                     0 calls
00:03:42.352 /GVMM/Sum/PokeNotBusy                   0 calls
00:03:42.352 /GVMM/Sum/PollCalls                     2 calls
00:03:42.352 /GVMM/Sum/PollHalts                     0 calls
00:03:42.352 /GVMM/Sum/PollWakeUps                   0 calls
00:03:42.352 /GVMM/Sum/WakeUpCalls                 205 calls
00:03:42.352 /GVMM/Sum/WakeUpNotHalted             151 calls
00:03:42.352 /GVMM/Sum/WakeUpWakeUps                 0 calls
00:03:42.352 /GVMM/VM/HaltBlocking                 857 calls
00:03:42.352 /GVMM/VM/HaltCalls                   1786 calls
00:03:42.353 /GVMM/VM/HaltNotBlocking              929 calls
00:03:42.353 /GVMM/VM/HaltTimeouts                 675 calls
00:03:42.353 /GVMM/VM/HaltWakeUps                    0 calls
00:03:42.353 /GVMM/VM/PokeCalls                      0 calls
00:03:42.353 /GVMM/VM/PokeNotBusy                    0 calls
00:03:42.353 /GVMM/VM/PollCalls                      2 calls
00:03:42.353 /GVMM/VM/PollHalts                      0 calls
00:03:42.353 /GVMM/VM/PollWakeUps                    0 calls
00:03:42.353 /GVMM/VM/WakeUpCalls                  205 calls
00:03:42.353 /GVMM/VM/WakeUpNotHalted              151 calls
00:03:42.353 /GVMM/VM/WakeUpWakeUps                  0 calls
00:03:42.353 /GVMM/VMs                               1 calls
00:03:42.353 /MM/HyperHeap/cbFree              1036784 bytes
00:03:42.353 /MM/HyperHeap/cbHeap              1310528 bytes
00:03:42.353 /PDM/AsyncCompletion/File/cbCached        0 bytes
00:03:42.353 /PDM/AsyncCompletion/File/cbCachedFru        0 bytes
00:03:42.353 /PDM/AsyncCompletion/File/cbCachedMruIn        0 bytes
00:03:42.353 /PDM/AsyncCompletion/File/cbCachedMruOut        0 bytes
00:03:42.353 /PDM/AsyncCompletion/File/cbMax   5242880 bytes
00:03:42.353 /PDM/BlkCache/cbCached                  0 bytes
00:03:42.353 /PDM/BlkCache/cbCachedFru               0 bytes
00:03:42.353 /PDM/BlkCache/cbCachedMruIn             0 bytes
00:03:42.353 /PDM/BlkCache/cbCachedMruOut            0 bytes
00:03:42.353 /PDM/BlkCache/cbMax               5242880 bytes
00:03:42.353 /PDM/CritSects/ATA0/ContentionR3        0 times
00:03:42.353 /PDM/CritSects/ATA0/ContentionRZLock        0 times
00:03:42.353 /PDM/CritSects/ATA0/ContentionRZUnlock        0 times
00:03:42.353 /PDM/CritSects/ATA1/ContentionR3        0 times
00:03:42.353 /PDM/CritSects/ATA1/ContentionRZLock        0 times
00:03:42.353 /PDM/CritSects/ATA1/ContentionRZUnlock        0 times
00:03:42.353 /PDM/CritSects/EM-REM/ContentionR3        0 times
00:03:42.354 /PDM/CritSects/EM-REM/ContentionRZLock        0 times
00:03:42.354 /PDM/CritSects/EM-REM/ContentionRZUnlock        0 times
00:03:42.354 /PDM/CritSects/FTM/ContentionR3         0 times
00:03:42.354 /PDM/CritSects/FTM/ContentionRZLock        0 times
00:03:42.354 /PDM/CritSects/FTM/ContentionRZUnlock        0 times
00:03:42.354 /PDM/CritSects/IOM EMT Lock/ContentionR3        0 times
00:03:42.354 /PDM/CritSects/IOM EMT Lock/ContentionRZLock        0 times
00:03:42.354 /PDM/CritSects/IOM EMT Lock/ContentionRZUnlock        0 times
00:03:42.354 /PDM/CritSects/MM-HYPER/ContentionR3        0 times
00:03:42.354 /PDM/CritSects/MM-HYPER/ContentionRZLock        0 times
00:03:42.354 /PDM/CritSects/MM-HYPER/ContentionRZUnlock        0 times
00:03:42.354 /PDM/CritSects/PCNet#0/ContentionR3        0 times
00:03:42.354 /PDM/CritSects/PCNet#0/ContentionRZLock        0 times
00:03:42.354 /PDM/CritSects/PCNet#0/ContentionRZUnlock        0 times
00:03:42.354 /PDM/CritSects/PDM/ContentionR3         0 times
00:03:42.354 /PDM/CritSects/PDM/ContentionRZLock        0 times
00:03:42.354 /PDM/CritSects/PDM/ContentionRZUnlock        0 times
00:03:42.354 /PDM/CritSects/PGM/ContentionR3         0 times
00:03:42.354 /PDM/CritSects/PGM/ContentionRZLock        0 times
00:03:42.354 /PDM/CritSects/PGM/ContentionRZUnlock        0 times
00:03:42.354 /PDM/CritSects/PS2KM#0/ContentionR3        0 times
00:03:42.354 /PDM/CritSects/PS2KM#0/ContentionRZLock        0 times
00:03:42.354 /PDM/CritSects/PS2KM#0/ContentionRZUnlock        0 times
00:03:42.354 /PDM/CritSects/REM-Register/ContentionR3        0 times
00:03:42.354 /PDM/CritSects/REM-Register/ContentionRZLock        0 times
00:03:42.354 /PDM/CritSects/REM-Register/ContentionRZUnlock        0 times
00:03:42.354 /PDM/CritSects/TM Timer Lock/ContentionR3        0 times
00:03:42.354 /PDM/CritSects/TM Timer Lock/ContentionRZLock        0 times
00:03:42.354 /PDM/CritSects/TM Timer Lock/ContentionRZUnlock        0 times
00:03:42.354 /PDM/CritSects/TM VirtualSync Lock/ContentionR3        0 times
00:03:42.354 /PDM/CritSects/TM VirtualSync Lock/ContentionRZLock        0 times
00:03:42.355 /PDM/CritSects/TM VirtualSync Lock/ContentionRZUnlock        0 times
00:03:42.355 /PDM/CritSects/VGA/ContentionR3         0 times
00:03:42.355 /PDM/CritSects/VGA/ContentionRZLock        0 times
00:03:42.355 /PDM/CritSects/VGA/ContentionRZUnlock        0 times
00:03:42.355 /PDM/CritSects/VMMDev/ContentionR3        0 times
00:03:42.355 /PDM/CritSects/VMMDev/ContentionRZLock        0 times
00:03:42.355 /PDM/CritSects/VMMDev/ContentionRZUnlock        0 times
00:03:42.355 /PDM/Queue/DevHlp/AllocFailures         0 times
00:03:42.355 /PDM/Queue/DevHlp/Flush                 0 calls
00:03:42.355 /PDM/Queue/DevHlp/FlushLeftovers        0 times
00:03:42.355 /PDM/Queue/DevHlp/Insert                0 calls
00:03:42.355 /PDM/Queue/DevHlp/cItems                8 count
00:03:42.355 /PDM/Queue/DevHlp/cbItem               32 bytes
00:03:42.355 /PDM/Queue/Keyboard/AllocFailures        0 times
00:03:42.355 /PDM/Queue/Keyboard/Flush               0 calls
00:03:42.355 /PDM/Queue/Keyboard/FlushLeftovers        0 times
00:03:42.355 /PDM/Queue/Keyboard/Insert              0 calls
00:03:42.355 /PDM/Queue/Keyboard/cItems             64 count
00:03:42.355 /PDM/Queue/Keyboard/cbItem             16 bytes
00:03:42.355 /PDM/Queue/Mouse/AllocFailures          0 times
00:03:42.355 /PDM/Queue/Mouse/Flush                  0 calls
00:03:42.355 /PDM/Queue/Mouse/FlushLeftovers         0 times
00:03:42.355 /PDM/Queue/Mouse/Insert                 0 calls
00:03:42.355 /PDM/Queue/Mouse/cItems               128 count
00:03:42.355 /PDM/Queue/Mouse/cbItem                48 bytes
00:03:42.355 /PDM/Queue/PCNet-Rcv/AllocFailures        0 times
00:03:42.355 /PDM/Queue/PCNet-Rcv/Flush              0 calls
00:03:42.355 /PDM/Queue/PCNet-Rcv/FlushLeftovers        0 times
00:03:42.355 /PDM/Queue/PCNet-Rcv/Insert             0 calls
00:03:42.355 /PDM/Queue/PCNet-Rcv/cItems             1 count
00:03:42.355 /PDM/Queue/PCNet-Rcv/cbItem            16 bytes
00:03:42.355 /PDM/Queue/PCNet-Xmit/AllocFailures        0 times
00:03:42.356 /PDM/Queue/PCNet-Xmit/Flush             0 calls
00:03:42.356 /PDM/Queue/PCNet-Xmit/FlushLeftovers        0 times
00:03:42.356 /PDM/Queue/PCNet-Xmit/Insert            0 calls
00:03:42.356 /PDM/Queue/PCNet-Xmit/cItems            1 count
00:03:42.356 /PDM/Queue/PCNet-Xmit/cbItem           16 bytes
00:03:42.356 /PGM/CPU0/cGuestModeChanges        106582 times
00:03:42.356 /PGM/ChunkR3Map/Mapped                 14 count
00:03:42.356 /PGM/ChunkR3Map/Unmapped                0 count
00:03:42.356 /PGM/ChunkR3Map/c                      14 count
00:03:42.356 /PGM/ChunkR3Map/cMax                  512 count
00:03:42.356 /PGM/LargePage/Alloc                    0 times
00:03:42.356 /PGM/LargePage/Recheck                  0 times
00:03:42.356 /PGM/LargePage/Refused                  0 times
00:03:42.356 /PGM/LargePage/Reused                   0 times
00:03:42.356 /PGM/Page/cAllPages                 69796 count
00:03:42.356 /PGM/Page/cBalloonedPages               0 count
00:03:42.356 /PGM/Page/cHandyPages                 114 count
00:03:42.356 /PGM/Page/cMonitoredPages               0 count
00:03:42.356 /PGM/Page/cPrivatePages             10779 count
00:03:42.356 /PGM/Page/cPureMmioPages                2 count
00:03:42.356 /PGM/Page/cReadLockedPages              0 count
00:03:42.356 /PGM/Page/cReusedSharedPages            0 count
00:03:42.356 /PGM/Page/cSharedPages                  0 count
00:03:42.356 /PGM/Page/cWriteLockedPages             0 count
00:03:42.356 /PGM/Page/cWrittenToPages               0 count
00:03:42.356 /PGM/Page/cZeroPages                59015 count
00:03:42.356 /PGM/cRelocations                       1 times
00:03:42.356 /PROF/CPU0/EM/Capped                    0 ticks/call (           0 ticks,       0 times, max         0, min      -1)
00:03:42.357 /PROF/CPU0/EM/ForcedActions           364 times
00:03:42.357 /PROF/CPU0/EM/Halted                  201 times
00:03:42.357 /PROF/CPU0/EM/RAWTotal                  1 times
00:03:42.357 /PROF/CPU0/EM/REMTotal                159 times
00:03:42.357 /PROF/CPU0/EM/Total              27325796988 ticks/call ( 27325796988 ticks,       1 times, max 27325796988, min 27325796988)
00:03:42.357 /PROF/VM/CPU0/Halt/Block          1401248 ns/call (  2213972261 ticks,    1580 times, max   9775951, min       1)
00:03:42.357 /PROF/VM/CPU0/Halt/BlockInsomnia        0 ns/call (           0 ticks,       0 times, max         0, min      -1)
00:03:42.357 /PROF/VM/CPU0/Halt/BlockOnTime          0 ns/call (           0 ticks,       0 times, max         0, min      -1)
00:03:42.357 /PROF/VM/CPU0/Halt/BlockOverslept        0 ns/call (           0 ticks,       0 times, max         0, min      -1)
00:03:42.357 /PROF/VM/CPU0/Halt/Timers           16028 ns/call (    63185485 ticks,    3942 times, max   3806022, min       2)
00:03:42.357 /PROF/VM/CPU0/Halt/Yield             7713 ns/call (       15427 ticks,       2 times, max     15426, min       1)
00:03:42.357 /REM/TbFlushCount                       0 times
00:03:42.357 /REM/TbPhysInvldCount                 704 times
00:03:42.357 /REM/TlbFlushCount                 106622 times
00:03:42.357 /TM/CPU/00/cNsExecuting          14659856967 ns
00:03:42.357 /TM/CPU/00/cNsHalted             2289859663 ns
00:03:42.357 /TM/CPU/00/cNsOther              306333753 ns
00:03:42.357 /TM/CPU/00/cNsTotal              17256050383 ns
00:03:42.357 /TM/CPU/00/cPeriodsExecuting          162 count
00:03:42.357 /TM/CPU/00/cPeriodsHalted             201 count
00:03:42.357 /TM/CPU/00/pctExecuting                98 %
00:03:42.357 /TM/CPU/00/pctHalted                    0 %
00:03:42.357 /TM/CPU/00/pctOther                     1 %
00:03:42.357 /TM/CPU/pctExecuting                   98 %
00:03:42.357 /TM/CPU/pctHalted                       0 %
00:03:42.357 /TM/CPU/pctOther                        1 %
00:03:42.357 /TM/MaxHzHint                           0 Hz
00:03:42.357 /TM/R3/1nsSteps                      2301 times
00:03:42.357 /TM/TSC/offCPU0                         0 ticks
00:03:42.357 /TM/VirtualSync/CurrentOffset    265893219 ns
00:03:42.357 ********************* End of statistics **********************
00:03:42.431 NAT: zone(nm:mbuf, used:0)
00:03:42.431 NAT: zone(nm:mbuf_cluster, used:0)
00:03:42.431 NAT: zone(nm:mbuf_packet, used:0)
00:03:42.431 NAT: zone(nm:mbuf_jumbo_pagesize, used:0)
00:03:42.431 NAT: zone(nm:mbuf_jumbo_9k, used:0)
00:03:42.431 NAT: zone(nm:mbuf_jumbo_16k, used:0)
00:03:42.452 Changing the VM state from 'DESTROYING' to 'TERMINATED'.
peluse
Posts: 4
Joined: 1. Mar 2011, 16:23
Primary OS: MS Windows 7
VBox Version: OSE self-compiled
Guest OSses: Windows 7

Re: Building VirtualBox OSE 32 bit (SVN) with VS2010

Post by peluse »

I'm afraid I can't help with the logs but the versions I'm using are zlib 1.2.5 and curl 7.18.0. Hope that helps
ank_rock
Posts: 11
Joined: 14. Jun 2011, 16:31
Primary OS: MS Windows 7
VBox Version: OSE self-compiled
Guest OSses: debian

Re: Building VirtualBox OSE 32 bit (SVN) with VS2010

Post by ank_rock »

thnkkk you so much... it worked for me.... I also copied some dll...
cd vbox_svn\out\\win.x86\release\bin
xcopy g:\qt\4.7.3\bin*.dll .
kiranvbox
Posts: 4
Joined: 8. Jul 2011, 09:29
Primary OS: MS Windows 7
VBox Version: OSE self-compiled
Guest OSses: linux

Re: Building VirtualBox OSE 32 bit (SVN) with VS2010

Post by kiranvbox »

Thanks for the detailed info. It was very helpful. I managed to compile a 64-bit version also using lot of the information from here.
Had to use the Visual Studio x64 Cross Tools Command Prompt for some compiles to get 64-bit targets. Now to check if it works...
kiranvbox
Posts: 4
Joined: 8. Jul 2011, 09:29
Primary OS: MS Windows 7
VBox Version: OSE self-compiled
Guest OSses: linux

Re: Building VirtualBox OSE 32 bit (SVN) with VS2010

Post by kiranvbox »

The info above is useful for 64-bit compile too. Adding some info to this thread so say thanks for all the fish:

For other latest versions of tools beyond VirtualBox, it was mostly simple compile for latest versions of other tools:

Download qt-everywhere-opensource-src-4.7.3
Install Visual Studio Qt Addin (v1.1.9)
add -platform win32-msvc2010 to the qt configure. (win32-msvc2010 is also for 64bit)
Download curl-7.21.7
Change MACHINE in curl-7.21.7/lib/Makefile.vc10 from X86 to X64.
Use the VS2010 Win64 command prompt for 64-bit compile.
ank_rock
Posts: 11
Joined: 14. Jun 2011, 16:31
Primary OS: MS Windows 7
VBox Version: OSE self-compiled
Guest OSses: debian

Re: Building VirtualBox OSE 32 bit (SVN) with VS2010

Post by ank_rock »

The info above is useful for 64-bit compile too. Adding some info to this thread so say thanks for all the fish:
You compiled on Windows 7... if yes please post some instructions....
Post Reply