summaryrefslogtreecommitdiff
path: root/apps/nshlib
Commit message (Collapse)AuthorAgeFilesLines
* QEMU i486: New QEMU keyboard and VGA drivers from LizhuoyiGregory Nutt2014-03-081-1/+1
|
* Minor cleanup of some new configurations; warning removal with GCC 4.8.2Gregory Nutt2014-03-061-3/+3
|
* cosmetic changes to README files and commentsGregory Nutt2014-02-271-1/+1
|
* NSH cat command now adds to newline at the end of the file so that the NSH ↵Gregory Nutt2014-02-271-0/+11
| | | | prompt is always on a newline
* Should CPU load on each thread in the PS commandGregory Nutt2014-02-272-3/+156
|
* For Telnetd password/username fixes from Bertikd Van den BerghGregory Nutt2014-02-221-2/+2
|
* NSH telnet: Use strncpy vs strcpy to avoid overrunning username and password ↵Gregory Nutt2014-02-221-2/+2
| | | | buffers. From Bertold Van den Bergh
* Add CONFIG_DEFAULT_SMALL that will select default values for configuration ↵Gregory Nutt2014-02-201-35/+72
| | | | 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-206-33/+59
| | | | 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-193-5/+5
| | | | pseduo-filesystem
* mkdir can now be used to create empty directories in the pseudo-filesystem.Gregory Nutt2014-02-194-7/+7
|
* rmdir now may be used to remove empty nodes from the pseudo-filesystemGregory Nutt2014-02-193-4/+7
|
* More changes for a correct NSH Windows natvie buildGregory Nutt2014-02-071-0/+4
|
* Update README with configuration warningGregory Nutt2014-02-041-1/+1
|
* Update documentation, mostly related to the command line editorGregory Nutt2014-02-031-0/+13
|
* Add an EMACS-like command line editor that can be used wit NSHGregory Nutt2014-02-023-7/+49
|
* NSH cosmetic changesGregory Nutt2014-01-242-5/+4
|
* Networking: Improved status reporting and new carrier management ↵Gregory Nutt2014-01-211-5/+20
| | | | interfaces. From Max Holtzberg
* NSH: More break documentationGregory Nutt2014-01-181-0/+1
|
* NSH: Improved documentation of the break commandGregory Nutt2014-01-181-2/+10
|
* NSH: Add a break command; if-then-else and looping behavior can not be ↵Gregory Nutt2014-01-186-18/+143
| | | | 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-12/+2
| | | | 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-175-54/+419
|
* Add true and false commands; repartition some logic to better support ↵Gregory Nutt2014-01-174-57/+133
| | | | forthcoming looping
* NSH: Fix redirection of output to a file. That was broken with recent changesGregory Nutt2014-01-161-3/+3
|
* Changes to get PX4 config to build. Also some warning removalGregory Nutt2014-01-144-11/+16
|
* Cosmetic clean-up in preparation for TCP write buffering changeGregory Nutt2014-01-132-1/+9
|
* Recent NSH changes broke the minimal NSH configurationGregory Nutt2014-01-121-3/+5
|
* Fix a memory leak in last NSH change: Forgot to close a temporary fileGregory Nutt2014-01-121-5/+11
|
* NSH can not handle command arguments that are concatenations of constant ↵Gregory Nutt2014-01-111-104/+367
| | | | strings, command output, application program output, and environment varaible values.
* Back quoted NSH arguments now functionalGregory Nutt2014-01-115-100/+443
|
* Add support for backquoated commands as command argumentsGregory Nutt2014-01-103-18/+304
|
* NSH parser: Separate logic that executes a command into a separate functionGregory Nutt2014-01-101-299/+308
|
* NSH: Separate command line parsing from command execution. Add support for ↵Gregory Nutt2014-01-106-738/+191
| | | | multiple, semicolone separated commands on each line
* NSH: Separate command line parsing from command executionGregory Nutt2014-01-101-0/+742
|
* NSH: Code expects CONFIG_NSH_DRIPADDR and CONFIG_NSH_NETMASK even if DHCPC ↵Gregory Nutt2014-01-091-2/+2
| | | | is necessary. For now, just removed the dependency on DHCPC in the Kconfig file, but more thought is needed.
* Add support for the XPT2046 touchscreen controller on the Viewtool LCD moduleGregory Nutt2014-01-091-8/+9
|
* NSH Configuration: Refactor networking and netutils dependenciesGregory Nutt2014-01-091-3/+4
|
* README and other cosmetic updatesGregory Nutt2014-01-041-1/+7
|
* Move nuttx/configs/stm3240g-eval/src/up_cxxinitialize.c to ↵Gregory Nutt2013-12-292-35/+41
| | | | apps/platform/stm3240g-eval/
* procfs/: Extenstive architectural changes and enhancements by Ken PettitGregory Nutt2013-12-121-3/+6
|
* Modified NSH 'df -h' command to do some saner conversions. From Ken PettitGregory Nutt2013-12-121-3/+3
|
* Move ramdisk.h to include/nutt/fs/ramdisk.hGregory Nutt2013-12-102-2/+2
|
* SAMA5 NAND: bugfixesGregory Nutt2013-12-061-2/+2
|
* NSH: Add an option to the mkfatfs command to specify FAT12, FAT16, or FAT32Gregory Nutt2013-12-053-10/+86
|
* NSH mount count updated from Ken PettitGregory Nutt2013-11-171-2/+17
|
* fs/procfs: Add a tiny, primitive procfs file system. Might get more ↵Gregory Nutt2013-11-131-1/+6
| | | | interesting in the future
* NSH library: Allow USB trace without a USB consoleGregory Nutt2013-11-061-33/+34
|
* Add skip= and count= options to the NSH hexdump command. From Ken PettitGregory Nutt2013-11-013-27/+109
|
* Another case where we should use the routing table: There may be multiple ↵Gregory Nutt2013-10-051-1/+9
| | | | routers on the same network. In that case, we have to search for the routing table for the router that forwards to the destination address. We do this when we determine the MAC address we want in the ARP logic