summaryrefslogtreecommitdiffstats
path: root/contrib/linux-3c503-patch
diff options
context:
space:
mode:
authorMarty Connor2010-01-17 03:47:39 +0100
committerMarty Connor2010-01-17 03:47:39 +0100
commit330abebddf67ab27998f64070f27d5874cbc7b06 (patch)
tree08f5954725930ee9c38b0afab4cb9a30c71ce7e3 /contrib/linux-3c503-patch
parent[sanboot] Prevent leaking a stack reference for "keep-san" AoE (diff)
downloadipxe-330abebddf67ab27998f64070f27d5874cbc7b06.tar.gz
ipxe-330abebddf67ab27998f64070f27d5874cbc7b06.tar.xz
ipxe-330abebddf67ab27998f64070f27d5874cbc7b06.zip
[contrib] Move most contrib content to a separate repository
Most of the content that was previously in this directory has been moved to a separate git repository: http://git.etherboot.org/?p=contrib.git;a=summary or the Etherboot Project wiki: http://etherboot.org/
Diffstat (limited to 'contrib/linux-3c503-patch')
-rw-r--r--contrib/linux-3c503-patch/3c503.patch24
-rw-r--r--contrib/linux-3c503-patch/README7
2 files changed, 0 insertions, 31 deletions
diff --git a/contrib/linux-3c503-patch/3c503.patch b/contrib/linux-3c503-patch/3c503.patch
deleted file mode 100644
index b27ff1fc9..000000000
--- a/contrib/linux-3c503-patch/3c503.patch
+++ /dev/null
@@ -1,24 +0,0 @@
-diff -Naur linux.orig/drivers/net/3c503.c linux/drivers/net/3c503.c
---- linux.orig/drivers/net/3c503.c Thu Feb 19 23:14:04 1998
-+++ linux/drivers/net/3c503.c Thu Feb 19 23:16:24 1998
-@@ -179,7 +179,8 @@
- for both the old and new 3Com prefix */
- outb(ECNTRL_SAPROM|ECNTRL_THIN, ioaddr + 0x406);
- vendor_id = inb(ioaddr)*0x10000 + inb(ioaddr + 1)*0x100 + inb(ioaddr + 2);
-- if ((vendor_id != OLD_3COM_ID) && (vendor_id != NEW_3COM_ID)) {
-+ if ((vendor_id != OLD_3COM_ID) && (vendor_id != NEW_3COM_ID) &&
-+ (vendor_id != BULL_3COM_ID)) {
- /* Restore the register we frobbed. */
- outb(saved_406, ioaddr + 0x406);
- return ENODEV;
-diff -Naur linux.orig/drivers/net/3c503.h linux/drivers/net/3c503.h
---- linux.orig/drivers/net/3c503.h Thu Feb 19 23:14:05 1998
-+++ linux/drivers/net/3c503.h Mon Feb 16 11:41:56 1998
-@@ -11,6 +11,7 @@
-
- #define OLD_3COM_ID 0x02608c
- #define NEW_3COM_ID 0x0020af
-+#define BULL_3COM_ID 0x000062
-
- /* Shared memory management parameters. NB: The 8 bit cards have only
- one bank (MB1) which serves both Tx and Rx packet space. The 16bit
diff --git a/contrib/linux-3c503-patch/README b/contrib/linux-3c503-patch/README
deleted file mode 100644
index 109094ffe..000000000
--- a/contrib/linux-3c503-patch/README
+++ /dev/null
@@ -1,7 +0,0 @@
-As part of determining whether a 3c503 is present, the Linux driver
-examines the first 3 bytes of the ethernet address (the vendor ID)
-to see if it corresponds to a known 3Com vendor ID.
-
-The Bull discless 386 workstation I have (don't laugh) has an
-unknown vendor ID 0x000062. This trivial patch adds it to those
-known to the driver.