Nevar pievienot vairāk kā 25 tēmas Tēmai ir jāsākas ar burtu vai ciparu, tā var saturēt domu zīmes ('-') un var būt līdz 35 simboliem gara.
Michael Brown b29861a5aa IPv6 minirouting table entries hold persistent references to net devices. 18 gadus atpakaļ
..
acpi.h Added generic function for calculating ACPI table checksum 19 gadus atpakaļ
ansiesc.h Add basic ANSI escape sequence support to BIOS console 18 gadus atpakaļ
aoe.h An AoE session holds a persistent reference to a net device. 18 gadus atpakaļ
arp.h gcc3 compatibility: removed ARP_NET_PROTOCOL(). 19 gadus atpakaļ
async.h Added generic asynchronous operations code. 19 gadus atpakaļ
ata.h Backing out last change; no immediate plans to make the whole block-device layer asynchronous, so keeping the sync/async boundary within aoedev.c seems cleanest for now. 19 gadus atpakaļ
autoboot.h Split the (quick hack) boot logic out from main.c to autoboot.c, add a "boot" command to attempt booting from within the command shell, fall back to shell if boot fails for any reason. 18 gadus atpakaļ
bitbash.h Generalised the SPI abstraction layer to also be able to handle interfaces that don't provide the full flexibility of a bit-bashing interface. 18 gadus atpakaļ
blockdev.h Add the concept of a "user pointer" (similar to the void __user * in the kernel), which encapsulates the information needed to refer to an external buffer. Under normal operation, this can just be a void * equivalent, but under -DKEEP_IT_REAL it would be a segoff_t equivalent. 19 gadus atpakaļ
chap.h Added generic CHAP layer, independent of iSCSI 18 gadus atpakaļ
command.h Added execv() and system(). 18 gadus atpakaļ
crypto.h Added "name" field to digest algorithms 18 gadus atpakaļ
device.h Added generic device model. 19 gadus atpakaļ
dhcp.h Added options listed in http://www.microsoft.com/whdc/winlogo/hwrequirements.mspx as required for iSCSI boot. Note that options 204-206 are listed in the document but don't seem to be defined anywhere on the web. 18 gadus atpakaļ
editbox.h Don't automatically redraw the edit box; this allows better inheritance. 18 gadus atpakaļ
editstring.h Provide an edit history to allow caller to efficiently update display. 18 gadus atpakaļ
errortab.h Split error-message table portions of errno.h out to gpxe/errortab.h 18 gadus atpakaļ
ethernet.h Made eth_ntoa() public for use in legacy drivers' DBG() statements. 19 gadus atpakaļ
ftp.h Merge changes from mcb-tcp-fixes branch. 18 gadus atpakaļ
heap.h Tear out old heap code, replace with code that simply allocates memory for use by malloc(). 19 gadus atpakaļ
hello.h Merge changes from mcb-tcp-fixes branch. 18 gadus atpakaļ
hotplug.h Minimal hotplug support: provide a facility for notifying persistent reference holders that their reference is about to become invalid. 18 gadus atpakaļ
http.h Merge changes from mcb-tcp-fixes branch. 18 gadus atpakaļ
i2c.h Change read_bit() to return 0 or -1UL, rather than 0 or 1. 19 gadus atpakaļ
ibft.h ibft_fill_data() prototype change. 18 gadus atpakaļ
icmp6.h IP6 support 19 gadus atpakaļ
if_arp.h Header rearrangement. 19 gadus atpakaļ
if_ether.h Add ETH_P_AOE 19 gadus atpakaļ
in.h IP6 support 19 gadus atpakaļ
init.h Removed some obsolete INIT_XXX constants. 19 gadus atpakaļ
ip.h Verify checksums on the RX datapath. 18 gadus atpakaļ
ip6.h IPv6 minirouting table entries hold persistent references to net devices. 18 gadus atpakaļ
iscsi.h Merge changes from mcb-tcp-fixes branch. 18 gadus atpakaļ
keys.h Fix definition of KEY_END 18 gadus atpakaļ
list.h Add list_for_each_entry_safe. 19 gadus atpakaļ
md5.h Added generic CHAP layer, independent of iSCSI 18 gadus atpakaļ
ndp.h IP6 support 19 gadus atpakaļ
netdevice.h Use hotplug support to notify persistent reference holders when a net_device is unregistered. 18 gadus atpakaļ
nvo.h Added nvo_save() 18 gadus atpakaļ
nvs.h Added the generic block-splitting code to nvs.c 18 gadus atpakaļ
pci.h Strip down i386 PCI configuration space I/O to the bare minimum. A typical build will now include 880 bytes of PCI support code, compared to 2327 bytes in Etherboot 5.4. 19 gadus atpakaļ
pci_ids.h Header rearrangement. 19 gadus atpakaļ
pkbuff.h Add pkb_available() 19 gadus atpakaļ
process.h Added basic code for implementing co-operative multitasking. 19 gadus atpakaļ
profile.h Added basic profiling support 19 gadus atpakaļ
retry.h Make start_timer() and stop_timer() robust against incorrect usage. 18 gadus atpakaļ
scsi.h Automatically select between the "10" and "16" variants of command set, based on the device size. 18 gadus atpakaļ
settings.h Added descriptive text for settings and setting types, and display it in the option config UI. 18 gadus atpakaļ
settings_ui.h settings_ui() now returns a status code. 18 gadus atpakaļ
shell.h Minimal shell implementation using readline() and system(). 18 gadus atpakaļ
shell_banner.h Separated out (and tidied up) shell banner code 18 gadus atpakaļ
socket.h Moved the basic struct sockaddr out of in.h. 19 gadus atpakaļ
spi.h Migrated etherfabric driver to using generic SPI layer. 18 gadus atpakaļ
spi_bit.h Abstracted out part of the concept of an SPI device to a generalised NVS device. 18 gadus atpakaļ
tables.h Remove unused attribute from __table macros; the tables are no longer static since otherwise gcc4 optimises them away completely. Also, it really *is* an error if the table start and end are unused, so they certainly shouldn't be marked with attribute unused. 19 gadus atpakaļ
tcp.h Use whole bytes for the ACKED and RCVD portions of tcp_state; it produces slightly smaller code. 18 gadus atpakaļ
tcpip.h Verify checksums on the RX datapath. 18 gadus atpakaļ
tftp.h Added TFTP test code (currently just dumps file to console). 19 gadus atpakaļ
threewire.h Added write support for three-wire devices (e.g. the RTL8139 EEPROM) 18 gadus atpakaļ
uaccess.h Add the concept of a "user pointer" (similar to the void __user * in the kernel), which encapsulates the information needed to refer to an external buffer. Under normal operation, this can just be a void * equivalent, but under -DKEEP_IT_REAL it would be a segoff_t equivalent. 19 gadus atpakaļ
udp.h Convert some trivial functions to static inlines. 19 gadus atpakaļ