summaryrefslogtreecommitdiff
path: root/apps/nshlib
Commit message (Collapse)AuthorAgeFilesLines
* configs/sim/src: Add logic to test localtime and TZ database. See ↵Gregory Nutt2015-04-151-2/+13
| | | | apps/system/README.txt for info
* Allow NSH date command with no RTC. This command is useful without an RTC ↵Gregory Nutt2015-04-118-21/+25
| | | | too. Also, this permits testing on the simulator which never has an RTC
* Ooops accidentally committed some trash debug codeGregory Nutt2015-04-071-2/+1
|
* Modbus: Misc cleanupGregory Nutt2015-04-071-1/+2
|
* NSH initialization now calls boardctl(BOARDIOC_INIT) instead of ↵Gregory Nutt2015-03-314-34/+8
| | | | board_app_initaliaze. Modify all configurations: Make sure that CONFIG_LIB_BOARDCTL=y appears wherever CONFIG_NSH_ARCHINIT=y appears. Remove support for CONFIG_NSH_ARCHMAC. It is not used and there are better ways to do that operation
* Rename arch_nshinitialize() to board_app_initialize()Gregory Nutt2015-03-314-7/+8
|
* Cortex-M7: Add support for enabled the D-Cache in write only mode.Gregory Nutt2015-03-291-1/+2
| | | | SAMV7 Ethernet: I- and D-Cache are now enabled in the netnsh/ configuration. D-Cache is enabled in write-though mode. This mode is necessary because the DMA descriptors are each 8-bytes in size but the D-Cache cache line is 32-bits in size. So it is impossible make coherency for every 8-byte DMA descriptor without write-through.
* SAMV7 USB: Updates to early initialization logicGregory Nutt2015-03-241-0/+1
|
* Costmetic changes name while debugging a filename issueGregory Nutt2015-03-151-3/+4
|
* Add missing options to NSH Library Kconfig. From Freddie ChopinGregory Nutt2015-03-021-0/+9
|
* Fix some time value changes; mostly changing greater than 1000000000 to ↵Gregory Nutt2015-02-201-1/+1
| | | | greater than or equal to 1000000000. From Juha Niskanen
* NSH: The default priority of the network initialization thread should be ↵Gregory Nutt2015-02-171-1/+5
| | | | lower. It is CPU intensive and can interfere with other operations
* apps/netutils/netlib: Add utilities to convert to/from prefix lengths ↵Gregory Nutt2015-02-061-8/+18
| | | | from/to 128-bit network masks. Modify the NSH IPv6 ifconfig command to show the network mask in a more standard, human readable way.
* Fix errors in range of IPv6 netmask range in Kconfig filesGregory Nutt2015-02-051-8/+8
|
* ICMPv6: Some initial bugfix from first tests of the ICMPv6 ↵Gregory Nutt2015-02-031-1/+11
| | | | auto-configuration logic. so far so good but a lot more testing is needed
* ICMPv6: This completes coding of the ICMPv6 auto-configuration feature. It ↵Gregory Nutt2015-02-032-12/+8
| | | | is not yet functional
* Add netlib and application hooks for ICMPv6 auto-configuration (still incompleteGregory Nutt2015-02-032-19/+22
|
* NSH: Fix error in conditional compilation in PS command. From Macs NGregory Nutt2015-02-031-1/+1
|
* drivers/ramdisk.c and include/nuttx/fs/ramdisk.h: Add logic to dispose of ↵Gregory Nutt2015-02-011-1/+2
| | | | the drvier and RAM buffer when the RAM disk has been unlinked and all open references to the RAM disk have been closed. Add new parameters to romdisk() to specify what should be done with the RAM/ROM buffer -- Should it be freed or not? Changed all calls to ramdisk() to use these new parameters.
* Elminate some warnings with TCP and UDP are disabledGregory Nutt2015-01-291-1/+3
|
* Unix domain: A few fixes from early integrationGregory Nutt2015-01-271-1/+2
|
* Unix domain: With these changes I can build a system with no link layer ↵Gregory Nutt2015-01-271-0/+16
| | | | enabled, only Unix domain sockets
* Various fixes to get Unix domain sockets to build on the simulator without ↵Gregory Nutt2015-01-271-1/+1
| | | | Ethernet
* NSH: A few minor improvements/corrections to the network status presentationGregory Nutt2015-01-241-4/+4
|
* Fix another error in conditional compilation; plus some additional cosmetic ↵Gregory Nutt2015-01-241-1/+1
| | | | changes
* Correct a typo in conditional compilationGregory Nutt2015-01-241-1/+1
|
* Networking: Clean up network status collection and presentation for IPv6Gregory Nutt2015-01-241-33/+110
|
* Networking: Various bugfixes related to IPv6 pingGregory Nutt2015-01-231-1/+1
|
* apps/nshlib: Add the ping6 command to support checking IPv6 networks. NSH ↵Gregory Nutt2015-01-234-84/+265
| | | | logic is complete but still missing some network level support
* Correct name of fields in struct sockaddr_in6: sin6_port and sin6_family, ↵Gregory Nutt2015-01-203-47/+39
| | | | not sin_port and sin_family
* Fix defaults for IPv6 netmaskGregory Nutt2015-01-201-17/+17
|
* NSH library: Disable put and get commends of TFTP client is not enabled; ↵Gregory Nutt2015-01-191-0/+16
| | | | disable wget command if web client is not enabled
* apps/nshlib: Add logic to initialize IPv6 addresses, to display IPv6 ↵Gregory Nutt2015-01-192-43/+170
| | | | addresses, and enough IPv6 ifconfig to allocation compilation (logic still not implemented)
* Update ChangeLogGregory Nutt2015-01-192-8/+348
|
* Rename IPv4 netlib functions and files to make room in the namespace for ↵Gregory Nutt2015-01-182-13/+19
| | | | corresponding IPv6 functions and files
* Networking: Replace all references to net_ipaddr_t with either in_addr_t on ↵Gregory Nutt2015-01-161-8/+14
| | | | net_ipv6addr_t. The goal is to support both IPv4 and IPv6 simultaneously. This requires that the two types be distinct and not conditionally typedef'ed to net_ipaddr_t.
* NSH TFTP get command: Wrong file name used for the destination. From LazloGregory Nutt2014-12-101-1/+1
|
* Correct spelling: MOUNTPOINT not MOUNTPOUNT. Numerous places. Some are ↵Gregory Nutt2014-12-014-7/+7
| | | | problems. From Woohan Lee
* Clarify MTU/BUFSIZE in apps/ README.txt files and DocumentationGregory Nutt2014-11-161-4/+6
|
* 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
* Network: Various fixes for clean compile with both Ethernet and SLIPGregory Nutt2014-11-152-7/+18
|
* Remove use of CONFIG_MASK_TASK_ARGS from NSHGregory Nutt2014-11-132-11/+1
|
* Emit a warning if number of arguments to builtin or file app can be truncatedGregory Nutt2014-11-121-0/+6
|
* Move CONFIG_NSH_TMPDIR to CONFIG_LIBC_TMPDIRGregory Nutt2014-11-053-14/+3
|
* Fix some errors that I introduced into NSH telnet this morningGregory Nutt2014-10-291-4/+6
|
* Fix some typosGregory Nutt2014-10-291-1/+1
|
* Fix problem with trailing whitespace (newline) in Telnet username/password. ↵Gregory Nutt2014-10-291-7/+93
| | | | Noted by Lazlo
* Update everything under apps/ to use the corrected syslog interfacesGregory Nutt2014-10-081-13/+22
|
* fix reversed in/out file closing when an error occurs. From Ken PettitGregory Nutt2014-10-031-2/+2
|
* NSH Fix ls -l output for regular filesGregory Nutt2014-09-301-1/+1
|