summaryrefslogtreecommitdiffstats
path: root/src
Commit message (Expand)AuthorAgeFilesLines
* [pnm] Add support for PNM imagesMichael Brown2013-11-277-0/+803
* [image] Add image_pixbuf() to create pixel buffer from imageMichael Brown2013-11-272-3/+40
* [image] Allow for non-executable image formatsMichael Brown2013-11-271-0/+2
* [pixbuf] Add generic concept of a pixel bufferMichael Brown2013-11-272-0/+130
* [console] Pass escape sequence context to ANSI escape sequence handlersMichael Brown2013-11-276-14/+36
* [main] Defer "initialising devices" message until initialising devicesMichael Brown2013-11-271-1/+3
* [test] Include failing code within failed test result outputMichael Brown2013-11-272-6/+9
* [dhcpv6] Allow stateful DHCPv6 to apply obtained IPv6 addressesMichael Brown2013-11-151-6/+24
* [ipv6] Separate the concepts of prefix and address creationMichael Brown2013-11-154-124/+201
* [build] Update build system for Syslinux 6.xChristian Hesse2013-11-152-1/+12
* [dhcpv6] Add basic support for stateful and stateless DHCPv6Michael Brown2013-11-144-5/+1207
* [ipv6] Add "ipv6" setting typeMichael Brown2013-11-143-0/+70
* [ipv6] Use given source address only if it is not the unspecified addressMichael Brown2013-11-142-1/+7
* [settings] Move user-class setting from dhcp.c to settings.cMichael Brown2013-11-143-8/+9
* [base16] Fix comparison of signed and unsigned integersMichael Brown2013-11-141-1/+1
* [pxe] Ensure cached DHCPACK is retrieved prior to network device creationMichael Brown2013-11-081-7/+12
* [cmdline] Generate command option help text automaticallyMichael Brown2013-11-0722-75/+93
* [ipv6] Add IPv6 network device configuratorMichael Brown2013-11-072-28/+217
* [dhcp] Remove obsolete dhcp() functionMichael Brown2013-11-052-25/+0Star
* [cmdline] Make "dhcp" command a synonym for "ifconf"Michael Brown2013-11-053-49/+3Star
* [cmdline] Add "ifconf" commandMichael Brown2013-11-051-0/+59
* [autoboot] Use ifconf() to configure network deviceMichael Brown2013-11-051-3/+2Star
* [ifmgmt] Add ifconf() to carry out network device configurationMichael Brown2013-11-052-2/+90
* [parseopt] Add parse_netdev_configurator()Michael Brown2013-11-052-0/+27
* [dhcp] Add DHCP network device configuratorMichael Brown2013-11-051-0/+6
* [netdevice] Add generic concept of a network device configuratorMichael Brown2013-11-052-5/+282
* [cmdline] Allow "if<xxx>" commands to take optionsMichael Brown2013-11-056-63/+174
* [ifmgmt] Rewrite iflinkwait() to use monojob_wait()Michael Brown2013-11-054-44/+99
* [autoboot] Fix shell banner timeoutMichael Brown2013-11-051-1/+3
* [cmdline] Rewrite "sync" command to use monojob_wait()Michael Brown2013-11-015-25/+103
* [monojob] Report ongoing job status as overall return status on timeoutMichael Brown2013-11-011-2/+5
* [monojob] Add timeout parameter to monojob_wait()Michael Brown2013-11-018-18/+26
* [job] Allow job_progress() to return an ongoing job status code, if knownMichael Brown2013-11-013-9/+20
* [interface] Default to calling intf_restart() in response to intf_close()Michael Brown2013-11-011-2/+19
* [netdevice] Make all net_driver methods optionalMichael Brown2013-11-016-72/+13Star
* [parseopt] Add parse_timeout()Michael Brown2013-11-0112-27/+46
* [ipv6] Add ndp_tx_router_solicitation() to send router solicitationsMichael Brown2013-10-255-37/+95
* [pxe] Always retrieve cached DHCPACK and apply to relevant network deviceMichael Brown2013-10-257-198/+239
* [ipv6] Automatically choose source for link-local and multicast destinationsMichael Brown2013-10-251-30/+34
* [ipv6] Treat sin6_scope_id consistentlyMichael Brown2013-10-252-5/+5
* [ipv6] Support stateless address autoconfiguration (SLAAC)Michael Brown2013-10-234-70/+235
* [ipv6] Extract link layer addresses from router advertisementsMichael Brown2013-10-233-54/+188
* [ipv6] Handle IPv6 option length correctlyMichael Brown2013-10-231-1/+1
* [intel] Add Intel I217 Gigabit Ethernet PCI IDlolipop2013-10-231-0/+1
* [cmdline] Add "ping" commandMichael Brown2013-10-213-0/+104
* [ping] Add top-level ping() function to ping a hostMichael Brown2013-10-212-0/+97
* [ping] Add generic ping mechanismMichael Brown2013-10-213-0/+327
* [ping] Add concept of a ping socketMichael Brown2013-10-213-0/+282
* [icmp] Add support for sending ICMP echo requestsMichael Brown2013-10-219-121/+402
* [resolv] Use sock_aton() to allow parsing of arbitrary numeric addressesMichael Brown2013-10-211-13/+4Star