summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
...
* Fix prototype mismatch.Michael Brown2007-12-071-2/+2
|
* Add missing format qualifierMichael Brown2007-12-061-1/+1
|
* Add copyright, clean up comments a bit, remove unnecessary code.Marty Connor2007-12-031-178/+102Star
| | | | Cleanups for e1000.c.
* Reallocate memory for bitmaps only when necessary.Michael Brown2007-11-291-7/+9
|
* udp_open_promisc() calls udp_open_common() with peer==NULL.Michael Brown2007-11-281-2/+3
|
* Add RFC2090 TFTP multicast support.Michael Brown2007-11-284-82/+481
|
* Quick hack to be able to accept transfers from servers that don'tMichael Brown2007-11-251-0/+2
| | | | supply options.
* Merge branch 'mdc-working' of ssh://git.etherboot.org//pub/scm/people/mdc/gpxeMarty Connor2007-11-240-0/+0
|\
| * Added netdev_nullify to natsemi_remove()Marty Connor2007-11-211-0/+1
| |
* | Provide individually cached constructed copies of DHCP packets viaMichael Brown2007-11-221-86/+109
| | | | | | | | | | | | PXENV_GET_CACHED_INFO. If we dont do this, Altiris' NBP screws up; it relies on being able to grab pointers to each of the three packets and then read them at will later.
* | Do not fill in the BufferLimit field in structMichael Brown2007-11-221-3/+32
| | | | | | | | | | s_PXENV_GET_CACHED_INFO, because this field doesn't exist in earlier versions of the PXE spec, and some callers don't allocate space for it.
* | Allow DHCP server to instruct gPXE to ignore ProxyDHCP (which willMichael Brown2007-11-212-9/+24
| | | | | | | | | | | | also avoid waiting for ProxyDHCP offers). Also reduce the ProxyDHCP timeout, because it's already irritating me.
* | Add ProxyDHCP support.Michael Brown2007-11-212-26/+59
| |
* | Added netdev_nullify to natsemi_remove()Marty Connor2007-11-211-0/+1
| |
* | Removed old e1000 driver.Michael Brown2007-11-212-5800/+0Star
| |
* | Merge commit 'origin/mdc-working'Michael Brown2007-11-219-1/+14104
|\|
| * Fixed receive instability by not enabling interrupts. duh.Marty Connor2007-11-212-19/+27
| | | | | | | | | | I have successfully booted DOS via iSCSI and PXELINUX via TFTP with this version of the e1000 driver.
| * This version now transmits and receives.Marty Connor2007-11-202-220/+138Star
| | | | | | | | | | | | There may still be an issue with memory handling, since it seems to die ungracefully when ARP packets come in after loading a kernel. Something to debug.
| * Autonegotiation fixes. NIC now autonegotiates to whatever the switch supports.Marty Connor2007-11-203-18/+22
| |
| * A version of the new e1000 driver that transmits.Marty Connor2007-11-203-254/+351
| | | | | | | | autonegotiation still needs work. receive is not working yet.
| * Fix typo.Marty Connor2007-11-181-2/+1Star
| |
| * Add e1000 directory to build, since the driver compiles cleanly.Marty Connor2007-11-181-0/+1
| |
| * Rename e1000_main.c to e1000.c to so we can type 'make bin/e1000.dsk' ↵Marty Connor2007-11-181-0/+0
| | | | | | | | instead of 'make bin/e1000_main.dsk'
| * Add errfile definition for new e1000.cMarty Connor2007-11-181-2/+1Star
| |
| * Introduce files for new e1000 driverMarty Connor2007-11-187-5800/+14074
| |
| * Add src/drivers/net/e1000 as home of new e1000 driverMarty Connor2007-11-181-0/+1
| |
| * Move current e1000 driver files to e1000-old/ directory to avoid collisionsMarty Connor2007-11-182-0/+5800
| |
| * Add ERRFILE information for e1000_main and e1000_hw, part of the new e1000 ↵Marty Connor2007-11-181-0/+2
| | | | | | | | | | | | driver It is likely we will rename e1000_main to e1000 when the new e1000 driver is debugged.
* | Remove some assumptions about DHCP obtaining only a single options block.Michael Brown2007-11-214-14/+23
| |
* | Add PXE-required DHCP options to DHCPDISCOVER and DHCPREQUEST packets.Michael Brown2007-11-212-10/+31
| |
* | Add UUID to DHCP request as option 97 (if available).Michael Brown2007-11-215-0/+30
| |
* | Added definition of a UUID and uuid_ntoa() (for debugging), andMichael Brown2007-11-214-19/+89
| | | | | | | | implemented smbios_get_uuid().
* | Update SMBIOS internal API to be easier to use, and not to requireMichael Brown2007-11-212-101/+214
| | | | | | | | potentially exorbitant amounts of stack space.
* | Replace "Etherboot" strings with "gPXE".Michael Brown2007-11-201-4/+4
| |
* | Merge branch 'master' of rom.etherboot.org:/pub/scm/gpxeMichael Brown2007-11-192-4/+1Star
|\|
| * Remove unnecessary variable.Marty Connor2007-11-182-4/+1Star
| |
* | Add bin/pci_VVVV_DDDD target to allow building ROM images withoutMichael Brown2007-11-191-4/+5
|/ | | | needing to know the gPXE internal ROM name.
* Work around a bug in the OpenSolaris iSCSI target.Michael Brown2007-11-051-3/+10
| | | | | | | | | | | | | | | We didn't specify values for MaxRecvDataSegmentLength and MaxBurstLength (to save space, since we were happy with the RFC-defined default values of 8kB and 256kB respectively). However, the OpenSolaris target (incorrectly) assumes default values of zero for these parameters. The upshot was that the OpenSolaris target would get stuck in an endless loop trying to send us the first 512-byte sector, zero bytes at a time, and would eventually run out of memory and core-dump. Fixed by explicitly specifying the default values for these two parameters.
* Allow space for the kernel's real-mode .bss. Previously we weren'tMichael Brown2007-11-042-1/+9
| | | | | allowing any space for this, which makes it surprising that bzImage loading ever worked.
* Add missing attribute(packed) to two structures.Michael Brown2007-10-291-2/+2
|
* Merge branch 'master' of rom.etherboot.org:/pub/scm/gpxeMichael Brown2007-10-291-0/+1
|\
| * Added one more PCI IDMichael Brown2007-10-221-0/+1
| |
* | Merge branch '3leaf'Michael Brown2007-10-2910-1/+8058
|\ \ | |/ |/|
| * Change ROM names to lower case.Michael Brown2007-10-111-2/+2
| |
| * Ensure that empty e820 regions are skipped even at the end of theMichael Brown2007-10-101-11/+18
| | | | | | | | | | | | | | | | | | memory map. (We achieve this by setting CF on the last entry if it is zero-length; this avoids the need to look ahead to see at each entry if the *next* entry would be both the last entry and zero-length). This fixes the "0kB base memory" error message upon starting Windows 2003 on a SunFire X2100.
| * Force a netdevice poll in net_tx() before attempting to transmitMichael Brown2007-10-041-0/+8
| | | | | | | | | | packet, to work around the problem whereby small TX rings get backed up because we haven't yet poll()ed for TX completions.
| * Added more verbose memory-map debugging.Michael Brown2007-09-212-11/+43
| | | | | | | | | | Added redundant call to get_memmap() in int13_boot() immediately before jumping to boot sector, to assist in debugging.
| * Merge branch 'master' into 3leaf-deliveryMichael Brown2007-09-212-1/+11
| |\
| * | Reverted driver/net/mlx_ipoib to clean master stateMichael Brown2007-09-1819-3084/+361Star
| | |
| * | Merge branch 'master' into 3leaf-rewriteMichael Brown2007-09-180-0/+0
| |\ \