Gregory Nutt
|
665b01c762
|
Prep for NuttX-7.14 release
|
2016-01-28 11:35:35 -06:00 |
|
Gregory Nutt
|
1fc6fd9694
|
apps/platform/Makefile: Use a relative path to the board directory link rather than the absolute path. For Cygwin, the absolute would would need converted with cygpath. But just using the relative path is a simpler solution.
|
2016-01-27 14:19:47 -06:00 |
|
Gregory Nutt
|
a1cbc92b4f
|
Be courageous: system/ramtron completely removed. It is an inappropriate application
|
2016-01-27 10:38:14 -06:00 |
|
Gregory Nutt
|
f8f78a0661
|
system/ramtron is now EXPERIMENTAL because it violates the OS interface boundard by calling up_spiinitialize() directly. The function up_spiinitialize has been obsoleted and is no longer available
|
2016-01-27 09:25:01 -06:00 |
|
Gregory Nutt
|
0720f9a357
|
NSH: Add option to use platform-specific logic to verify login credentials; Add option to add a delay after each failed login attempt
|
2016-01-22 10:46:19 -06:00 |
|
Gregory Nutt
|
27a55f36d6
|
Move system/inifile to fsutils/inifile
|
2016-01-20 17:10:55 -06:00 |
|
Gregory Nutt
|
93d9d5e4ca
|
apps/nshlib: All NSH sessions may now be protected with passwords stored in the encrypted /etc/passwd file
|
2016-01-20 14:42:39 -06:00 |
|
Gregory Nutt
|
3dad8a29a2
|
NSH now supports an MOTD string that will be presented after the greeting
|
2016-01-20 11:18:08 -06:00 |
|
Gregory Nutt
|
fe05a8444f
|
apps/nshlib: Add useradd, userdel, and passwd commends
|
2016-01-20 09:37:25 -06:00 |
|
Gregory Nutt
|
c98e51a31d
|
apps/fsutils/passwd: Add a password fila management library
|
2016-01-19 19:19:04 -06:00 |
|
Pelle Windestam
|
16c02a07d7
|
Add netlib_get_dripv4addr() and netlib_get_ipv4netmask()
|
2016-01-14 07:24:36 -06:00 |
|
Gregory Nutt
|
f09b7e400f
|
NSH: Add a time command that can be used to time other commands
|
2015-12-31 09:16:38 -06:00 |
|
Gregory Nutt
|
d5f8008931
|
OS test: Add a test of POSIX timers using SIGEV_THREAD. Also, clean up many warnings with building on a PC with 64-bit addresses
|
2015-12-30 16:29:21 -06:00 |
|
Alan Carvalho de Assis
|
1308399564
|
apps/examples/pca9635: Add a simple test of PCA9635PW PWM LED driver. From Alan Carvalho de Assis.
|
2015-12-15 14:10:21 -06:00 |
|
Gregory Nutt
|
f0a21d3d48
|
NSH: Add module commands: insmod, rmmod, and lsmod
|
2015-12-13 09:55:52 -06:00 |
|
Gregory Nutt
|
d02295d1f2
|
apps/examples/module: Add a test harness for testing NuttX kernel modules
|
2015-12-12 09:43:32 -06:00 |
|
Gregory Nutt
|
cfcd396861
|
apps/netutils/ping: This is an unfinished implementation of ping/ping6 using raw packets. Not yet even hooked into the build and configuration systems
|
2015-12-11 09:09:38 -06:00 |
|
Gregory Nutt
|
c0d0a0821a
|
netutils/telnetd: No longer calls OS interfade telnet_driver. Now creates Telnet sessions by open a new factory device at /dev/telnet and then using ioctl calls to create the session character drivers at /dev/telnetN.
|
2015-12-07 13:51:37 -06:00 |
|
Gregory Nutt
|
ba8d44d799
|
netutils/telnetd: Move the Telnet driver to nuttx/drivers/net
|
2015-12-07 09:29:29 -06:00 |
|
Gregory Nutt
|
9faf23290c
|
netutils/telnetd: Remove unused parameter from telnetd_driver
|
2015-12-07 08:15:50 -06:00 |
|
Gregory Nutt
|
30efc709bc
|
Fix spelling of Ken's last name in ChangeLog
|
2015-11-28 15:07:14 -06:00 |
|
Gregory Nutt
|
7e7dd916ce
|
apps/nshlib: The 'ps' command now uses /proc/(pid)/ to obtain task status information. A consequence of this is that you cannot use the 'ps' command if the procfs is not enabled and mounted at /proc.
|
2015-11-28 15:03:21 -06:00 |
|
Gregory Nutt
|
631c9cec12
|
apps/nshlib: The I/O buffer, g_iobuffer, should not be a global buffer. That will not work in an environment where there are multiple NSH sessions. The I/O buffer must, instead, be a part part of the session-specific data defined in nsh_console.h # Please enter the commit message for your changes. Lines starting # with '#' will be ignored, and an empty message aborts the commit.
|
2015-11-28 11:13:47 -06:00 |
|
Ken Pettit
|
d82b8a2e23
|
apps/nshlib: Add a new NSH losmart command. losmart setups up a loop device for the smart MTD driver similar to losetup but with different syntax. From Ket Petit.
|
2015-11-28 09:05:05 -06:00 |
|
Gregory Nutt
|
0fb32570ff
|
apps/nshlib: Remove all references to internal OS interface netdev_foreach(). Logic in ifconfig, ifup, and ifown now use the procfs file system to examine networking status.
|
2015-11-27 17:47:09 -06:00 |
|
Gregory Nutt
|
bb88ff9b12
|
nshlib/: ifconfig now uses /proc/net/eth0 to display network configuration. You will need to enable the procfs file system in order to use ifconfig
|
2015-11-27 16:57:22 -06:00 |
|
Gregory Nutt
|
32b992971b
|
apps/nshlib: The 'ifconfig' command now uses /proc/net/stat to show network statistics. A consequence of this is that you cannot view network statistics if the procfs is not enabled and mounted at /proc
|
2015-11-27 13:04:11 -06:00 |
|
Gregory Nutt
|
981e74b810
|
If CONFIG_NETDEV_STATISTICS=y, then ifconfig will now print network driver statistics
|
2015-11-26 14:43:34 -06:00 |
|
Gregory Nutt
|
a62bf6727f
|
NSH no long calls losetup() and loteardown() directly. Now it uses /dev/loop and performs these operations using ioctl() calls
|
2015-11-25 17:55:16 -06:00 |
|
Ken Pettit
|
b34bfb02e1
|
NSH: Extend mount command to include mount options argument. From Ken Petit
|
2015-11-25 08:49:29 -06:00 |
|
Gregory Nutt
|
f2ea88fc9e
|
NSH: Like bash, NSH set command should strip off any leading or trailing whitespace
|
2015-11-23 11:18:32 -06:00 |
|
Gregory Nutt
|
178c9780a8
|
NSH: Add support for basename and dirname commands
|
2015-11-23 10:21:15 -06:00 |
|
Gregory Nutt
|
ea7aab8afa
|
Upate ChangeLog
|
2015-11-23 07:02:27 -06:00 |
|
Gregory Nutt
|
2ff6775ac9
|
Add the hexed command line hex editor. See http://apps.venomdev.net/hexed/
|
2015-11-21 18:32:04 -06:00 |
|
Gregory Nutt
|
146f126ead
|
nshlib: Now that NuttX automatically converts block to character devices, the implemention of the DD command no longer has to muck with block to character conversion
|
2015-11-21 11:57:41 -06:00 |
|
Gregory Nutt
|
9ee96d1430
|
examples/media: Add a simple test of access to media by block and MTD drivers
|
2015-11-09 11:45:44 -06:00 |
|
Alan Carvalho de Assis
|
825b721dfa
|
apps/examples/zerocross: Add a Zero Cross application example. From Alan Carvalho de Assis
|
2015-10-13 07:46:42 -06:00 |
|
Gregory Nutt
|
b93af2189b
|
Add a generic file system test at apps/examples/fstest
|
2015-10-10 14:18:23 -06:00 |
|
Gregory Nutt
|
658165cdd5
|
Prep for the 7.12 release
|
2015-10-01 13:08:00 -06:00 |
|
Gregory Nutt
|
e32e6064e0
|
Update ChangeLog and README
|
2015-10-01 07:10:25 -06:00 |
|
Gregory Nutt
|
2e0d0ede6d
|
Add apps/exemples/udpblaster
|
2015-09-30 10:56:31 -06:00 |
|
Gregory Nutt
|
7557ef9803
|
Update ChangeLog
|
2015-09-29 16:35:49 -06:00 |
|
Stefan Kolb
|
21a33d9b7a
|
Fix modbus compile error if CONFIG_MB_FUNC_READ_DISCRETE_INPUTS_ENABLED is enabled
|
2015-09-24 06:38:07 -06:00 |
|
Stefan Kolb
|
71d944a5d0
|
Macros PR_BEGIN_EXTERN_C and PR_END_EXTERN_C were not defined in all contexts. Remove definition and replace with explicit expansion. From Stefan Kolb
|
2015-09-03 07:00:39 -06:00 |
|
Gregory Nutt
|
9191e22624
|
apps/examples/netloop: Add a test of the local loopback device
|
2015-09-02 18:18:47 -06:00 |
|
Bruno Herrera
|
4555282571
|
apps/nshlib: Fix error handling in 'mv' command. On a failure to expand the second path, the memory allocated for the expansion of the first path was not being freed. From Bruno Herrera.
|
2015-08-30 18:28:04 -06:00 |
|
Bruno Herrera
|
321924c0a5
|
apps/nshlib: Fix error handling in 'cat' command. On a failure to allocate memory, a file was not being closed. From Bruno Herrera.
|
2015-08-30 18:23:25 -06:00 |
|
Gregory Nutt
|
a7853cdc89
|
apps/examples/nettest: Extend the test so that it can be down using the local loopback device
|
2015-08-26 10:35:40 -06:00 |
|
Gregory Nutt
|
6cedfcd632
|
apps/examples/nettest: Add option to suppress networking initialization
|
2015-08-26 09:06:41 -06:00 |
|
Gregory Nutt
|
c7d8ef0f7c
|
Move logic from nuttx/libc/symtab to apps/system/symtab
|
2015-08-23 11:59:07 -06:00 |
|