VirtualBox

Changeset 33200 in vbox for trunk/src/VBox/Main


Ignore:
Timestamp:
Oct 18, 2010 2:29:54 PM (14 years ago)
Author:
vboxsync
svn:sync-xref-src-repo-rev:
66739
Message:

E1000, Main: support for 82566MC chipset type

Location:
trunk/src/VBox/Main
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/VBox/Main/ConsoleImpl2.cpp

    r33133 r33200  
    15371537                case NetworkAdapterType_I82543GC:
    15381538                case NetworkAdapterType_I82545EM:
     1539                case NetworkAdapterType_I82566MC:
    15391540                    pDev = pDevE1000;
    15401541                    pszAdapterName = "e1000";
     
    16231624                case NetworkAdapterType_I82545EM:
    16241625                    InsertConfigInteger(pCfg, "AdapterType", 2);
     1626                    break;
     1627                case NetworkAdapterType_I82566MC:
     1628                    InsertConfigInteger(pCfg, "AdapterType", 3);
    16251629                    break;
    16261630            }
  • trunk/src/VBox/Main/idl/VirtualBox.xidl

    r33140 r33200  
    1123211232  <enum
    1123311233    name="NetworkAdapterType"
    11234     uuid="3c2281e4-d952-4e87-8c7d-24379cb6a81c"
     11234    uuid="bea69445-df7d-449f-b224-3b6526d8ac81"
    1123511235  >
    1123611236    <desc>
     
    1125811258    <const name="Virtio"                value="6">
    1125911259        <desc>Virtio network device.</desc>
     11260    </const>
     11261    <const name="I82566MC"              value="7">
     11262        <desc>Intel 82566MC Gigabit Ethernet Controller (82566MC).</desc>
    1126011263    </const>
    1126111264  </enum>
  • trunk/src/VBox/Main/xml/Settings.cpp

    r33073 r33200  
    18801880            else if (strTemp == "82545EM")
    18811881                nic.type = NetworkAdapterType_I82545EM;
     1882            else if (strTemp == "82566MC")
     1883                nic.type = NetworkAdapterType_I82566MC;
    18821884            else if (strTemp == "virtio")
    18831885                nic.type = NetworkAdapterType_Virtio;
     
    35023504            case NetworkAdapterType_I82543GC:   pcszType = "82543GC"; break;
    35033505            case NetworkAdapterType_I82545EM:   pcszType = "82545EM"; break;
     3506            case NetworkAdapterType_I82566MC:   pcszType = "82566MC"; break;
    35043507            case NetworkAdapterType_Virtio:     pcszType = "virtio"; break;
    35053508            default: /*case NetworkAdapterType_Am79C970A:*/  pcszType = "Am79C970A"; break;
Note: See TracChangeset for help on using the changeset viewer.

© 2025 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette