Skip to content

Commit

Permalink
[e1000e] Add e1000e driver
Browse files Browse the repository at this point in the history
This commit adds an e1000e driver based on Intel source code
available at:

    http://sourceforge.net/projects/e1000/

which is upstream source for the Linux kernel e1000 drivers, and
should support many PCIe e1000 variants.

Signed-off-by: Marty Connor <mdc@etherboot.org>
  • Loading branch information
Marty Connor committed Mar 17, 2010
1 parent 930a2ff commit be5392c
Show file tree
Hide file tree
Showing 22 changed files with 18,164 additions and 0 deletions.
1 change: 1 addition & 0 deletions src/Makefile
Expand Up @@ -59,6 +59,7 @@ SRCDIRS += image
SRCDIRS += drivers/bus
SRCDIRS += drivers/net
SRCDIRS += drivers/net/e1000
SRCDIRS += drivers/net/e1000e
SRCDIRS += drivers/net/phantom
SRCDIRS += drivers/net/rtl818x
SRCDIRS += drivers/net/ath5k
Expand Down
34 changes: 34 additions & 0 deletions src/drivers/net/e1000e/e1000e.c
@@ -0,0 +1,34 @@
/*******************************************************************************
Intel PRO/1000 Linux driver
Copyright(c) 1999 - 2008 Intel Corporation.
This program is free software; you can redistribute it and/or modify it
under the terms and conditions of the GNU General Public License,
version 2, as published by the Free Software Foundation.
This program is distributed in the hope it will be useful, but WITHOUT
ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
more details.
You should have received a copy of the GNU General Public License along with
this program; if not, write to the Free Software Foundation, Inc.,
51 Franklin St - Fifth Floor, Boston, MA 02110-1301 USA.
The full GNU General Public License is included in this distribution in
the file called "COPYING".
Contact Information:
Linux NICS <linux.nics@intel.com>
e1000-devel Mailing List <e1000-devel@lists.sourceforge.net>
Intel Corporation, 5200 N.E. Elam Young Parkway, Hillsboro, OR 97124-6497
*******************************************************************************/

FILE_LICENCE ( GPL2_ONLY );

REQUIRE_OBJECT(e1000e_main);
REQUIRE_OBJECT(e1000e_80003es2lan);
REQUIRE_OBJECT(e1000e_82571);
REQUIRE_OBJECT(e1000e_ich8lan);

0 comments on commit be5392c

Please sign in to comment.