-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathindex.html
More file actions
81 lines (81 loc) · 3.2 KB
/
index.html
File metadata and controls
81 lines (81 loc) · 3.2 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
<!DOCTYPE html>
<html lang="en">
<head>
<title>Intel® Ethernet Linux Drivers</title>
<!-- This code includes a link to the Bootstrap CSS stylesheet. -->
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css">
<style>
body {
background-color: #1a1a1a;
color: #fff;
}
.navbar {
background-color: #0071c5;
}
.navbar-brand {
color: #fff;
}
ul {
list-style-type: none;
padding: 0;
}
li {
margin-bottom: 10px;
transition: all 0.3s ease;
}
li:hover {
transform: scale(1.05);
}
a {
text-decoration: none;
color: #3d93f5;
}
.footer {
position: fixed;
left: 0;
bottom: 0;
width: 100%;
background-color: #0071c5;
color: white;
text-align: center;
}
</style>
</head>
<body>
<nav class="navbar navbar-expand-lg">
<a class="navbar-brand" href="#">
<img src="https://www.intel.com/content/dam/logos/intel-header-logo.svg" alt="Intel Logo" height="30">
Intel® Ethernet Linux Driver Repositories
</a>
</nav>
<div class="container mt-5">
<h1>Intel® Ethernet Linux Driver Repositories</h1>
<p>The following links go to Intel's released driver sources. Feedback on
issues found or suggestions should be communicated to Intel Product Support or
can be given via PR or Issue report on the respective pages.</p>
<br>
<h2>Physical Function Drivers</h2>
<ul>
<li><a href="https://github.com/intel/ethernet-linux-ice"> Intel Ethernet 800 Series Linux driver (ice)</a></li>
<li><a href="https://github.com/intel/ethernet-linux-i40e"> Intel Ethernet 700 Series Linux driver (i40e)</a></li>
<li><a href="https://github.com/intel/ethernet-linux-ixgbe"> Intel Ethernet 500 Series Linux driver (ixgbe)</a></li>
<li><a href="https://github.com/intel/ethernet-linux-igb"> Intel Ethernet 300 Series Linux driver (igb)</a></li>
<li><a href="https://github.com/intel/ethernet-linux-idpf"> Intel Ethernet 2100 Series Linux driver (idpf)</a></li>
</ul>
<br>
<h2>Virtual Function Drivers</h2>
<ul>
<li><a href="https://github.com/intel/ethernet-linux-iavf"> Intel Ethernet Adaptive Virtual Function Linux driver (iavf) - for use with ice and i40e PF drivers.</a></li>
<li><a href="https://github.com/intel/ethernet-linux-ixgbevf">Intel Ethernet 500 Series Virtual Function Linux driver (ixgbevf) - for use with the ixgbe PF driver.</a></li>
</ul>
<br>
<h2>RDMA Drivers</h2>
<ul>
<li><a href="https://www.intel.com/content/www/us/en/download/19632/linux-rdma-driver-for-the-e810-and-x722-intel-ethernet-controllers.html"> Intel Ethernet RDMA Linux driver (irdma)</a></li>
</ul>
</div>
<div class="footer">
<p>Intel Corporation © 2024-2025</p>
</div>
</body>
</html>