| Commit message (Expand) | Author | Age | Files | Lines |
| * | Enable the axtls code to at least build within gPXE | Michael Brown | 2007-01-26 | 1 | -0/+62 |
| * | #if 0 out for now | Michael Brown | 2007-01-26 | 1 | -0/+3 |
| * | Yet more synonyms that people tend to use. | Michael Brown | 2007-01-26 | 1 | -11/+17 |
| * | Help quick testing of building Linux code inside gPXE | Michael Brown | 2007-01-25 | 1 | -0/+25 |
| * | Add Linux-compatible rol32/ror32 functions. Amazingly, gcc will | Michael Brown | 2007-01-25 | 1 | -0/+19 |
| * | Use base "0" in strtoul for consistency with "mem=" | Michael Brown | 2007-01-24 | 1 | -1/+1 |
| * | "vga=" is specified in decimal, not hex. | Michael Brown | 2007-01-23 | 1 | -1/+1 |
| * | Misread the definition of the type_of_loader field; it should include a | Michael Brown | 2007-01-19 | 2 | -2/+8 |
| * | Added SIGKILL handler | Michael Brown | 2007-01-19 | 1 | -0/+15 |
| * | Zeroing out memory before using it can be so important. | Michael Brown | 2007-01-19 | 1 | -0/+1 |
| * | Actually, it's probably safer *not* to leave child processes hanging | Michael Brown | 2007-01-19 | 1 | -9/+8 |
| * | Note that the SIGCHLD handler could be re-entered. | Michael Brown | 2007-01-19 | 1 | -1/+7 |
| * | Propagate return status code from last child to fail. | Michael Brown | 2007-01-19 | 1 | -1/+1 |
| * | Handle structured error codes. | Michael Brown | 2007-01-19 | 1 | -8/+63 |
| * | Introduce structured error codes. | Michael Brown | 2007-01-19 | 1 | -157/+418 |
| * | Add POSIX prototypes for time functions, to allow external code to build | Michael Brown | 2007-01-19 | 2 | -0/+42 |
| * | Split random number generation out into core/random.c, and create the | Michael Brown | 2007-01-19 | 3 | -22/+82 |
| * | vsprintf.h is gPXE-specific; move it to include/gpxe | Michael Brown | 2007-01-19 | 3 | -5/+5 |
| * | Use stdio.h instead of vsprintf.h | Michael Brown | 2007-01-19 | 45 | -45/+45 |
| * | Finally move the prototypes for printf() and friends to stdio.h | Michael Brown | 2007-01-19 | 2 | -34/+41 |
| * | 4.3BSD says that bcopy and bzero are defined in strings.h, not string.h | Michael Brown | 2007-01-19 | 2 | -1/+11 |
| * | Typo | Michael Brown | 2007-01-19 | 1 | -3/+3 |
| * | Add missing prerequisite include | Michael Brown | 2007-01-19 | 1 | -0/+2 |
| * | A working name resolution framework | Michael Brown | 2007-01-18 | 7 | -45/+188 |
| * | When an async operation dies, orphan its children. | Michael Brown | 2007-01-18 | 1 | -35/+74 |
| * | Have DHCP set the nameserver, rather than DNS read the DHCP nameserver | Michael Brown | 2007-01-18 | 2 | -12/+18 |
| * | Use total free memory as advertised window. This seems to be sufficient | Michael Brown | 2007-01-18 | 3 | -29/+31 |
| * | Move include/malloc.h to include/gpxe/malloc.h, since everything in there | Michael Brown | 2007-01-18 | 4 | -8/+19 |
| * | Include stdlib.h rather than malloc.h | Michael Brown | 2007-01-18 | 6 | -9/+7 |
| * | console.h is no longer needed for debugging | Michael Brown | 2007-01-18 | 1 | -1/+0 |
| * | Allow truly arbitrary debug levels to be specified via DEBUG= | Michael Brown | 2007-01-18 | 2 | -4/+4 |
| * | Declaring the CPU architecture in the middle of an assembly file is | Michael Brown | 2007-01-18 | 1 | -1/+0 |
| * | Add DBGLVL_PROFILE | Michael Brown | 2007-01-18 | 1 | -14/+28 |
| * | Remove the one-packet-per-poll-cycle limit; it seems to no longer be | Michael Brown | 2007-01-18 | 1 | -24/+5 |
| * | Increase window size to 64kB. Line rate downloads on a 100Mbps link, | Michael Brown | 2007-01-18 | 1 | -9/+30 |
| * | Accelerate memcpy() by around 32% on large, dword-aligned copies. | Michael Brown | 2007-01-18 | 2 | -0/+70 |
| * | Allow buffers to be pre-expanded on demand. | Michael Brown | 2007-01-18 | 2 | -5/+22 |
| * | Presize the download buffer when we see the Content-Length header; | Michael Brown | 2007-01-18 | 1 | -0/+12 |
| * | Reorder functions to more closely reflect the flow of control | Michael Brown | 2007-01-18 | 2 | -103/+97 |
| * | Don't always zero memory in malloc(). This saves around 2us on a | Michael Brown | 2007-01-18 | 2 | -6/+23 |
| * | Switch from calloc() to malloc()+memset() to match the practices used | Michael Brown | 2007-01-18 | 2 | -2/+6 |
| * | Respect the RX quota. This improves poll time by about 0.7us when the | Michael Brown | 2007-01-18 | 1 | -0/+1 |
| * | HTTP/DNS now working fully asynchronously. HTTP/IP addresses and any | Michael Brown | 2007-01-18 | 6 | -164/+72 |
| * | Replacement for fetch() which operates asynchronously and identifies | Michael Brown | 2007-01-18 | 2 | -0/+231 |
| * | Use struct sockaddr rather than struct sockaddr_tcpip | Michael Brown | 2007-01-18 | 2 | -14/+23 |
| * | Added async_uninit() to simplify failure paths. | Michael Brown | 2007-01-18 | 2 | -0/+37 |
| * | Add utility function to parse port from URI | Michael Brown | 2007-01-18 | 2 | -0/+12 |
| * | Ensure that struct sockaddr is long enough... | Michael Brown | 2007-01-18 | 2 | -4/+12 |
| * | Obsolete | Michael Brown | 2007-01-18 | 3 | -1318/+0 |
| * | Rename e{malloc,realloc,free} to u{malloc,realloc,free}, to more obviously | Michael Brown | 2007-01-16 | 8 | -43/+42 |