summaryrefslogtreecommitdiff
path: root/apps/ChangeLog.txt
Commit message (Collapse)AuthorAgeFilesLines
...
* nxplayer: Complilation failure in one configuration reported by Manuel StühnGregory Nutt2014-04-211-0/+3
|
* examples/touchscreen: Add a configuration option to indicate that there is ↵Gregory Nutt2014-04-141-1/+2
| | | | or is not an architecture-specific initialization function
* Corrections to the NTP client from Manuel StuehnGregory Nutt2014-04-121-0/+2
|
* Breadk dnsclient.c file into three smaller files: dns_resolver.c, ↵Gregory Nutt2014-04-111-1/+3
| | | | dns_socket.c, and dns_gethostip.c
* The rest of the resolv->DNS client naming change: Renamed directories and ↵Gregory Nutt2014-04-111-0/+3
| | | | header files
* Long needed clean up of DNS resolver for coding style and naming conventionsGregory Nutt2014-04-111-0/+2
|
* apps/netutils/ntpclient: Add a primitive NTP client. Initial checkin is ↵Gregory Nutt2014-04-101-1/+4
| | | | untested and probably incomplete
* Back out part of 610e2aa0c224e2936fe8009ef4a2351ce607067a: Need to be able ↵Gregory Nutt2014-04-081-1/+1
| | | | to select USB console devices when there is no /dev/console enabled. Noted by Librae
* apps/sysinfo: CONFIG_VERSION_BUILD is a string and needs to be printed with ↵Gregory Nutt2014-04-081-1/+2
| | | | %s not %d
* DHCPD: Correct value of PAD option is 0, not 1. From Brennan AshtonGregory Nutt2014-03-311-0/+2
|
* apps/examples/lcdrw: Fill out empty Kconfig fileGregory Nutt2014-03-271-0/+2
|
* apps/system/usbmsc: Back out kludge that is no longer needed with the ↵Gregory Nutt2014-03-251-0/+2
| | | | recent fix to the USB MSC class
* apps/examples/igmp: Fill out empty Kconfig file; can now be built as an NSH ↵Gregory Nutt2014-03-241-3/+5
| | | | builtin function. From Manuel Stühn
* Fix version number display in NSH promptGregory Nutt2014-03-231-0/+3
|
* Prep for NuttX 7.1 releasenuttx-7.1Gregory Nutt2014-03-151-5/+7
|
* Removed all support for the legacy configuration mechanism from the apps/ ↵Gregory Nutt2014-03-061-0/+3
| | | | directory
* Add missing DHCPD configuration settingsGregory Nutt2014-03-031-0/+2
|
* dhcpd_allocipaddr() should not call ntohl(). The return value is already in ↵Gregory Nutt2014-03-031-0/+3
| | | | host order. From Brennan Ashton
* NSH cat command now adds to newline at the end of the file so that the NSH ↵Gregory Nutt2014-02-271-1/+7
| | | | prompt is always on a newline
* NSH telnet: Use strncpy vs strcpy to avoid overrunning username and password ↵Gregory Nutt2014-02-221-0/+2
| | | | buffers. From Bertold Van den Bergh
* Add CONFIG_DEFAULT_SMALL that will select default values for configuration ↵Gregory Nutt2014-02-201-0/+3
| | | | settings based upon either more features or smaller footprint. Turns out not be be useful for modifying existing defconfig files because the defaults do not apply in that case
* unlink/rm can now be used on nodes in the pseudo-filesystem. There is new ↵Gregory Nutt2014-02-201-2/+8
| | | | configuration option to suppress these costly and mostly useless operations on the pseudo-filesystem
* Nodes in the pseudo-filesystem can now be renamed or moved within the ↵Gregory Nutt2014-02-191-2/+5
| | | | pseduo-filesystem
* mkdir can now be used to create empty directories in the pseudo-filesystem.Gregory Nutt2014-02-191-0/+3
|
* rmdir now may be used to remove empty nodes from the pseudo-filesystemGregory Nutt2014-02-191-1/+3
|
* Incomplete Kconfig files fleshed out by Alan Carvalho de AssisGregory Nutt2014-02-181-0/+3
|
* More changes to reduce complaints from CppCheck. Some latent bugs fixes, ↵Gregory Nutt2014-02-101-0/+3
| | | | but probably some new typos introduced
* HID mouse can now support some while mice. Problems with Microsoft miceGregory Nutt2014-02-101-1/+1
|
* Add a mouse interface that is similar to the touchscreen interface except ↵Gregory Nutt2014-02-101-1/+2
| | | | that it can handle multple buttons and continuously reports positional data so that it can control a cursor
* More changes to restore the native Windows buildGregory Nutt2014-02-071-0/+2
|
* CLE: Forgot to NUL terminate the command lineGregory Nutt2014-02-021-2/+1
|
* Add an EMACS-like command line editor that can be used wit NSHGregory Nutt2014-02-021-0/+7
|
* Preparation for NuttX-6.33 release (maybe tomorrow)Gregory Nutt2014-01-291-2/+4
|
* VI: all commands not seem functional. Still at least on display artifact ↵Gregory Nutt2014-01-211-1/+3
| | | | and probably some things not properly tested
* Networking: Improved status reporting and new carrier management ↵Gregory Nutt2014-01-211-0/+3
| | | | interfaces. From Max Holtzberg
* apps/system/vi: Add new tiny VI work-alike editor. Still a work in progress.Gregory Nutt2014-01-201-0/+2
|
* NSH: Add a break command; if-then-else and looping behavior can not be ↵Gregory Nutt2014-01-181-1/+6
| | | | configured out of the build for small systems that need minimal scripting capability
* NSH: Loosen up if-then-else-fi syntx so that a command can be on the same ↵Gregory Nutt2014-01-171-0/+5
| | | | line as the 'then' and 'else' tokens. This allows, as an example, 'if true; then echo true; else echo false; fi' which is much more bash-like
* NSH: Add support for while-do-done and until-do-done loopsGregory Nutt2014-01-171-0/+4
|
* Add true and false commands; repartition some logic to better support ↵Gregory Nutt2014-01-171-0/+7
| | | | forthcoming looping
* NSH: Fix redirection of output to a file. That was broken with recent changesGregory Nutt2014-01-161-0/+2
|
* Add a tiny INI file parserGregory Nutt2014-01-151-1/+3
|
* Fix a memory leak in last NSH change: Forgot to close a temporary fileGregory Nutt2014-01-121-0/+2
|
* NSH can not handle command arguments that are concatenations of constant ↵Gregory Nutt2014-01-111-0/+3
| | | | strings, command output, application program output, and environment varaible values.
* Back quoted NSH arguments now functionalGregory Nutt2014-01-111-0/+2
|
* Add support for backquoated commands as command argumentsGregory Nutt2014-01-101-0/+3
|
* NSH parser: Separate logic that executes a command into a separate functionGregory Nutt2014-01-101-0/+3
|
* NSH: Separate command line parsing from command execution. Add support for ↵Gregory Nutt2014-01-101-0/+6
| | | | multiple, semicolone separated commands on each line
* NSH Configuration: Refactor networking and netutils dependenciesGregory Nutt2014-01-091-1/+4
|
* apps/builtin: Native Windows build fixes from Max HoltzbergGregory Nutt2014-01-041-0/+2
|