summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
...
* Fixing md5 hashing when digest[$i] lower that 16. Sergey <sectus@mail.ru>Gregory Nutt2014-11-201-1/+1
|
* Update READMEGregory Nutt2014-11-191-0/+16
|
* Simplifed semaphore wait logic in poll()Gregory Nutt2014-11-191-10/+4
|
* Update ChangeLogGregory Nutt2014-11-191-1/+11
|
* poll() was not waking up from signals (for example mq_notify() events).Gregory Nutt2014-11-191-13/+26
| | | | Signed-off-by: Jussi Kivilinna <jussi.kivilinna@haltian.com>
* alling mq_timedreceived with immediate timeout was getting stuck and notGregory Nutt2014-11-191-2/+39
| | | | | | | | | | | | | timeout. Immediate timeout is achieved by setting absolute timeout value to past time, for example abstime={ .tv_sec=0, .tv_nsec=0 }. However absolute time was converted to relative time using unsigned integer arithmetic and resulted large ticks count by clock_abstime2ticks, instead of expected negative ticks value. Patch corrects clock_abstime2ticks to return negative ticks, if absolute time is in the past. Signed-off-by: Jussi Kivilinna <jussi.kivilinna@haltian.com>
* Freedom K25Z: Fix missing file inclusion in board Makefile. From Alan ↵Gregory Nutt2014-11-192-3/+7
| | | | Carvalho de Assis
* Update READMEGregory Nutt2014-11-181-0/+7
|
* SAM EMAC: Fix typo in the check for successfull allocation of a timerGregory Nutt2014-11-185-5/+5
|
* SAMA5D4-EK EMAC1: Correct name of EMAC1 configuration variableGregory Nutt2014-11-183-8/+12
|
* Ooops.. Fix oversight in last commitGregory Nutt2014-11-181-2/+23
|
* DHCPD: Remove dhcpd_addoption_n. It uses C features not supported by all ↵Gregory Nutt2014-11-181-27/+2
| | | | compilers
* DHCPD: Add support for the dhcp options for netmask, router and dns. From ↵Gregory Nutt2014-11-182-1/+82
| | | | Brennan Ashton
* Cosmetic fixes to commentsGregory Nutt2014-11-181-4/+4
|
* SAMA5D4-EK bridge configuration: Correct configuration -- PHY interfaces ↵Gregory Nutt2014-11-172-8/+8
| | | | are RMII not MII
* Update ChangeLogGregory Nutt2014-11-171-0/+5
|
* Move IP header flags from tcp.h to ip.h and rename IP_FLAGS vs TCPFLAGS. ↵Gregory Nutt2014-11-175-18/+18
| | | | The problem fixed here is that there IP flags were not available when TCP was disabled. The IP flags are used in ICMP and IGFMP
* NxPlayer Kconfig should depend on AUDIO supportGregory Nutt2014-11-171-0/+1
|
* Due to limitations in port unique-ness, have to use unique port numbers in ↵Gregory Nutt2014-11-172-4/+4
| | | | apps/examples/bridge for now
* Update TODO; Cosmetic changes to commentsGregory Nutt2014-11-173-13/+41
|
* SAMA5D4-EK bridge configuration needs to set software MAC addressGregory Nutt2014-11-171-2/+4
|
* Update ChangeLogGregory Nutt2014-11-173-8/+23
|
* Change SAMA5D4-EK bridge configuration so that runs out of DRAMGregory Nutt2014-11-172-30/+28
|
* Update ChangeLogsGregory Nutt2014-11-172-0/+8
|
* configs/sama5d4-ek/bridge: Add a simple test for the dual EMACs on the SAMA5D4Gregory Nutt2014-11-174-0/+1349
|
* apps/examples/bridge: Add a simple UDP relay bridge for testing ↵Gregory Nutt2014-11-178-3/+1056
| | | | configurations with multiple networks
* Fix trivial typo in a commentGregory Nutt2014-11-171-1/+1
|
* Network: Fix compilation problem when mutliple networks enabledGregory Nutt2014-11-171-1/+2
|
* Update ChangeLogsGregory Nutt2014-11-172-1/+8
|
* These examples all set the IP address of eth1 is DHCP is enabled. That ↵Gregory Nutt2014-11-175-6/+5
| | | | can't be right???
* changes for clean build with Ethernet+SLIPGregory Nutt2014-11-163-7/+11
|
* Completes basic changes to support per-device/per-link TCP receive window sizeGregory Nutt2014-11-165-29/+78
|
* Change CONFIG_NET_RECEIVE_WONDOW to CONFIG_NET_ETH_TCP_RECVWNDO or ↵Gregory Nutt2014-11-1683-83/+83
| | | | CONFIG_NET_SLIP_TCP_RECVWNDO in all defconfig files
* Rename NET_LL_MTU to NET_DEV_MTU; rename d_llmtu to d_mtuGregory Nutt2014-11-169-34/+38
|
* Update ChangeLogsGregory Nutt2014-11-162-0/+8
|
* Fixes for Ethernet, SLIP, and Ethernet+SLIP buildsGregory Nutt2014-11-161-8/+8
|
* Refresh configurationGregory Nutt2014-11-161-2/+6
|
* Completes conversion of CONFIG_NET_BUFIZE to CONFIG_NET_ETH/SLIP_MTUGregory Nutt2014-11-1611-40/+60
|
* Rename CONFIG_NET_BUFSIZE to CONFIG_NET_ETH_MTU in all drivers/net (except ↵Gregory Nutt2014-11-166-24/+24
| | | | slip.c)
* Clarify MTU/BUFSIZE in apps/ README.txt files and DocumentationGregory Nutt2014-11-164-9/+19
|
* Add link MTU size to network device structure.Gregory Nutt2014-11-163-12/+42
|
* Rename CONFIG_NET_BUFSIZE to CONFIG_NET_ETH_MTU in all configs/ README.txt filesGregory Nutt2014-11-167-12/+12
|
* Rename CONFIG_NET_BUFSIZE to CONFIG_NET_ETH_MTU is all MCU Ethernet driversGregory Nutt2014-11-1614-45/+45
|
* Rename CONFIG_NET_BUFSIZE to CONFIG_NET_ETH_MTU is all configuration filesGregory Nutt2014-11-1678-78/+78
|
* Update ChangeLogGregory Nutt2014-11-161-0/+3
|
* EFM32 USART setup: Computation of BAUD includes shift; Eliminate additional ↵Gregory Nutt2014-11-161-3/+6
| | | | shift. From Pierre-noel Bouteville
* Update ChangeLogGregory Nutt2014-11-162-0/+9
|
* NSH USB Console: Add logic to restart the console wait if an error occurs ↵Gregory Nutt2014-11-161-0/+13
| | | | while reading from the console. In USB console startup, the logic must be able to open the USB serial and receive 3 newlines. However, it the USB driver is disconnected or otherwise fails before the 3 newlines are received, the receive loop becomes a killer, infinite loop, CPU hog. Noted by spasbyspas
* SAM3/4: Add missing SPI0 clock configuartion macro for the SAM4SGregory Nutt2014-11-161-1/+3
|
* Update TODOGregory Nutt2014-11-151-10/+2
|