| Commit message (Collapse) | Author | Age | Files | Lines | ||
|---|---|---|---|---|---|---|
| ... | ||||||
| * | Don't even try to compile until the code is tidied up. | Michael Brown | 2005-04-15 | 1 | -0/+7 | |
| | | ||||||
| * | This at least compiles now. Haven't separated out the EMBEDDED code yet. | Michael Brown | 2005-04-15 | 1 | -241/+230![]() | |
| | | ||||||
| * | Not sure why I made these cosmetic changes, but I appear to have done so. | Michael Brown | 2005-04-15 | 1 | -3/+3 | |
| | | ||||||
| * | Added "classical" ISA example. | Michael Brown | 2005-04-15 | 1 | -0/+63 | |
| | | ||||||
| * | Added EISA, ISAPnP and MCA examples. | Michael Brown | 2005-04-15 | 1 | -7/+117 | |
| | | ||||||
| * | Updated to new PCI bus interface. | Michael Brown | 2005-04-15 | 1 | -89/+100 | |
| | | ||||||
| * | Updated to work with new ISAPnP bus code. | Michael Brown | 2005-04-15 | 1 | -189/+142![]() | |
| | | ||||||
| * | Standardised debug messages to make it easy to get a bus scan printout | Michael Brown | 2005-04-15 | 1 | -0/+4 | |
| | | | | | (just build debugging versions of the relevant bus objects). | |||||
| * | Cleaner separation of find_t509_device/fill_t509_device. | Michael Brown | 2005-04-15 | 1 | -4/+11 | |
| | | ||||||
| * | Updated to new ISA API, but this driver probably has deeper problems. | Michael Brown | 2005-04-14 | 1 | -92/+95 | |
| | | ||||||
| * | This code is unbelievably ugly, has never been fixed up to work with | Michael Brown | 2005-04-14 | 2 | -1363/+0![]() | |
| | | | | | | relocation and (hence) presumably has not been used since Etherboot 5.0. Say bye-bye! | |||||
| * | Updated to general ISA bus API. | Michael Brown | 2005-04-14 | 1 | -122/+108![]() | |
| | | ||||||
| * | Updated to common ISA bus API. | Michael Brown | 2005-04-14 | 1 | -161/+118![]() | |
| | | ||||||
| * | name should be const | Michael Brown | 2005-04-14 | 1 | -1/+1 | |
| | | ||||||
| * | Fixed up automatic modifications by hand. | Michael Brown | 2005-04-14 | 8 | -45/+44![]() | |
| | | ||||||
| * | Automatically modified by | Michael Brown | 2005-04-14 | 22 | -88/+22![]() | |
| | | | | | perl -pi -0777 -e 's/\s*?if\s*\(\s*!\s*find_pci_device.*?,\s*\&(\w+)\s*\)\s*\)\s*return\s*0;(.*BOOT_DRIVER\s*\(.*?,)(.*?\))/$2 find_pci_boot_device, $1,$3/sm' *.c | |||||
| * | Fix up the automatic modifications. | Michael Brown | 2005-04-14 | 1 | -10/+11 | |
| | | ||||||
| * | Made amenable to automatic update. | Michael Brown | 2005-04-14 | 1 | -1/+0![]() | |
| | | ||||||
| * | This is the only driver that has a genuine reason to call | Michael Brown | 2005-04-14 | 1 | -8/+3![]() | |
| | | | | | find_pci_device() directly. | |||||
| * | Automatically updated using | Michael Brown | 2005-04-14 | 23 | -48/+23![]() | |
| | | | | | | | perl -pi -0777 -e 's/(_probe\s*\(\s*struct\s+dev.*?)(\s*\)\s*{.*?$)\s*struct pci_device.*?=\s*pci_device \( dev \);$/${1}, struct pci_device *pci${2}/ms' *.c sis900 excluded from update | |||||
| * | Updated to new device API. | Michael Brown | 2005-04-14 | 3 | -71/+59![]() | |
| | | ||||||
| * | Updated to current device API. | Michael Brown | 2005-04-14 | 1 | -20/+20 | |
| | | ||||||
| * | Split 3c509.c into 3c509.9 and 3c529.c, with shared code in 3c5x9.c. | Michael Brown | 2005-04-14 | 4 | -622/+683 | |
| | | | | | | Probe mechanisms now use standard EISA and MCA bus methods, with 3c509.c defining a custom ISA bus to handle the 3c509 contention resolution logic. | |||||
| * | Standardised debug mechanism in place now. | Michael Brown | 2005-04-14 | 1 | -18/+12![]() | |
| | | ||||||
| * | Stripped references to variables in C code. | Michael Brown | 2005-04-13 | 1 | -7/+1![]() | |
| | | ||||||
| * | EISA support now provided by eisa.c | Michael Brown | 2005-04-13 | 1 | -11/+0![]() | |
| | | | | | MCA support now provided by mca.c | |||||
| * | Finished by hand | Michael Brown | 2005-04-13 | 3 | -113/+104![]() | |
| | | ||||||
| * | Finished by hand | Michael Brown | 2005-04-13 | 4 | -50/+60 | |
| | | ||||||
| * | Finished by hand | Michael Brown | 2005-04-13 | 5 | -91/+101 | |
| | | ||||||
| * | Finished by hand | Michael Brown | 2005-04-13 | 9 | -177/+192 | |
| | | ||||||
| * | Hand-finished | Michael Brown | 2005-04-13 | 2 | -30/+37 | |
| | | ||||||
| * | Hand-finished | Michael Brown | 2005-04-13 | 1 | -30/+27![]() | |
| | | ||||||
| * | Automatically updated using | Michael Brown | 2005-04-13 | 31 | -144/+272 | |
| | | | | | perl -pi -0777 -e 's/^(\s*)dev->disable(\s*)=\s*(\w+)_disable;\s*nic->poll\s*=\s*(\w+);\s*nic->transmit\s*=\s*(\w+);\s*nic->irq\s*=\s*(\w+);/static struct nic_operations ${3}_operations;\nstatic struct nic_operations ${3}_operations = {\n\t.connect\t= dummy_connect,\n\t.poll\t\t= $4,\n\t.transmit\t= $5,\n\t.irq\t\t= $6,\n\t.disable\t= ${3}_disable,\n};${1}nic->nic_op\t= &${3}_operations;/msg' *.c | |||||
| * | Manual tweaks to get all drivers to follow the "disable, poll, transmit, | Michael Brown | 2005-04-13 | 6 | -4/+6 | |
| | | | | | irq" pattern. | |||||
| * | Automatically updated using | Michael Brown | 2005-04-13 | 8 | -14/+14 | |
| | | | | | | | perl -pi -e 's/(_probe\s*\(\s*struct )dev \*.*?(\s*\);)/${1}dev *dev$2/' *.c perl -pi -e 's/(_disable\s*\(\s*struct )dev \*.*?(\s*\);)/${1}nic *nic$2/' *.c | |||||
| * | Automatically updated using | Michael Brown | 2005-04-13 | 31 | -76/+31![]() | |
| | | | | | | | perl -pi -0777 -e 's/_disable\s*\(\s*struct dev \*dev\s*\)\s*{\s*struct nic \*nic.*?$/_disable ( struct nic *nic ) {/ms' *.c perl -pi -0777 -e 's/_disable\s*\(\s*struct dev \*dev(\s*__unused)?\)\s*{/_disable ( struct nic *nic$1 ) {/ms' *.c | |||||
| * | Automatically updated using | Michael Brown | 2005-04-13 | 22 | -66/+110 | |
| | | | | | perl -pi -0777 -e 's/_probe\s*\(\s*struct dev \*dev,\s*struct pci_device \*(\w+?)\s*\)\s*{(\s*)struct nic \*nic.*?$/_probe ( struct dev *dev ) {\n${2}struct nic *nic = nic_device ( dev );\n${2}struct pci_device *$1 = pci_device ( dev );/ms' *.c | |||||
| * | Minor regexp tweaks to catch degenerate cases. | Michael Brown | 2005-04-13 | 2 | -16/+8![]() | |
| | | ||||||
| * | Auto-updated using | Michael Brown | 2005-04-13 | 23 | -184/+92![]() | |
| | | | | | | | perl -pi -0777 -e 's/static struct pci_driver (\w+) __pci_driver = {.*\.name\s*=\s*(\"\S+\").*\.probe\s*=\s*(\w+).*\.ids\s*=\s*(\w+).*\.class\s*=\s*(\w+).*?};/static struct pci_driver $1 =\n\tPCI_DRIVER ( $2, $4, $5 );\n\nBOOT_DRIVER ( $2, $3 );/ms' *.c perl -pi -e 's/(PCI_DRIVER \(.*, )0 \);/${1}PCI_NO_CLASS );/' *.c | |||||
| * | Updated to new device API. | Michael Brown | 2005-04-12 | 1 | -57/+50![]() | |
| | | ||||||
| * | Fixed up PCI-scanning code to use new PCI interface. | Michael Brown | 2005-04-12 | 1 | -21/+14![]() | |
| | | ||||||
| * | Almost all information in this file is now obsolete. Writing a new driver | Michael Brown | 2005-04-11 | 1 | -91/+0![]() | |
| | | | | | | should, with the new build system, just be a case of writing the .c file and dropping it in place in drivers/net. :) | |||||
| * | Merged mcb30-realmode-redesign back to HEAD | Michael Brown | 2005-04-08 | 10 | -21/+33 | |
| | | ||||||
| * | Initial revision | Michael Brown | 2005-03-08 | 54 | -0/+45950 | |

