Gregory Nutt
|
1b9d7c1522
|
ICMPv6: Some initial bugfix from first tests of the ICMPv6 auto-configuration logic. so far so good but a lot more testing is needed
|
2015-02-03 16:19:08 -06:00 |
|
Gregory Nutt
|
6273eb0160
|
ICMPv6: This completes coding of the ICMPv6 auto-configuration feature. It is not yet functional
|
2015-02-03 15:40:56 -06:00 |
|
Gregory Nutt
|
5499189417
|
Add netlib and application hooks for ICMPv6 auto-configuration (still incomplete
|
2015-02-03 08:01:55 -06:00 |
|
Gregory Nutt
|
3b60c71103
|
NSH: Fix error in conditional compilation in PS command. From Macs N
|
2015-02-03 07:21:56 -06:00 |
|
Gregory Nutt
|
0724e7ccf3
|
drivers/ramdisk.c and include/nuttx/fs/ramdisk.h: Add logic to dispose of 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.
|
2015-02-01 07:24:16 -06:00 |
|
Gregory Nutt
|
72d3a733a8
|
Elminate some warnings with TCP and UDP are disabled
|
2015-01-29 09:33:45 -06:00 |
|
Gregory Nutt
|
b7fa5a3359
|
Unix domain: A few fixes from early integration
|
2015-01-27 16:39:30 -06:00 |
|
Gregory Nutt
|
5060e08fcb
|
Unix domain: With these changes I can build a system with no link layer enabled, only Unix domain sockets
|
2015-01-27 15:26:03 -06:00 |
|
Gregory Nutt
|
a4e66459d0
|
Various fixes to get Unix domain sockets to build on the simulator without Ethernet
|
2015-01-27 14:11:46 -06:00 |
|
Gregory Nutt
|
0c7864ae68
|
NSH: A few minor improvements/corrections to the network status presentation
|
2015-01-24 09:11:12 -06:00 |
|
Gregory Nutt
|
6d2ecf8a79
|
Fix another error in conditional compilation; plus some additional cosmetic changes
|
2015-01-24 09:04:28 -06:00 |
|
Gregory Nutt
|
d001ccb196
|
Correct a typo in conditional compilation
|
2015-01-24 08:38:13 -06:00 |
|
Gregory Nutt
|
beaa7b74a6
|
Networking: Clean up network status collection and presentation for IPv6
|
2015-01-24 08:26:12 -06:00 |
|
Gregory Nutt
|
55ac29ac27
|
Networking: Various bugfixes related to IPv6 ping
|
2015-01-23 14:40:09 -06:00 |
|
Gregory Nutt
|
b39fb98d86
|
apps/nshlib: Add the ping6 command to support checking IPv6 networks. NSH logic is complete but still missing some network level support
|
2015-01-23 12:49:49 -06:00 |
|
Gregory Nutt
|
c96aa9218a
|
Correct name of fields in struct sockaddr_in6: sin6_port and sin6_family, not sin_port and sin_family
|
2015-01-20 18:14:09 -06:00 |
|
Gregory Nutt
|
27b3913c92
|
Fix defaults for IPv6 netmask
|
2015-01-20 13:48:03 -06:00 |
|
Gregory Nutt
|
71d2ae0fac
|
NSH library: Disable put and get commends of TFTP client is not enabled; disable wget command if web client is not enabled
|
2015-01-19 10:32:46 -06:00 |
|
Gregory Nutt
|
8fbc907aa2
|
apps/nshlib: Add logic to initialize IPv6 addresses, to display IPv6 addresses, and enough IPv6 ifconfig to allocation compilation (logic still not implemented)
|
2015-01-19 09:59:43 -06:00 |
|
Gregory Nutt
|
9bff050ad0
|
Update ChangeLog
|
2015-01-19 09:03:10 -06:00 |
|
Gregory Nutt
|
953c0fb069
|
Rename IPv4 netlib functions and files to make room in the namespace for corresponding IPv6 functions and files
|
2015-01-18 14:17:00 -06:00 |
|
Gregory Nutt
|
36118a1b76
|
Networking: Replace all references to net_ipaddr_t with either in_addr_t on 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.
|
2015-01-16 12:30:18 -06:00 |
|
Gregory Nutt
|
308818b718
|
NSH TFTP get command: Wrong file name used for the destination. From Lazlo
|
2014-12-10 18:37:43 -06:00 |
|
Gregory Nutt
|
fa035373e4
|
Correct spelling: MOUNTPOINT not MOUNTPOUNT. Numerous places. Some are problems. From Woohan Lee
|
2014-12-01 06:41:30 -06:00 |
|
Gregory Nutt
|
64b8c1841c
|
Clarify MTU/BUFSIZE in apps/ README.txt files and Documentation
|
2014-11-16 08:50:36 -06:00 |
|
Gregory Nutt
|
4542091dac
|
NSH USB Console: Add logic to restart the console wait if an error occurs 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
|
2014-11-16 06:48:46 -06:00 |
|
Gregory Nutt
|
f9074a02ad
|
Network: Various fixes for clean compile with both Ethernet and SLIP
|
2014-11-15 13:52:39 -06:00 |
|
Gregory Nutt
|
da8ba5dfd5
|
Remove use of CONFIG_MASK_TASK_ARGS from NSH
|
2014-11-13 06:27:29 -06:00 |
|
Gregory Nutt
|
eaddb9059f
|
Emit a warning if number of arguments to builtin or file app can be truncated
|
2014-11-12 14:23:14 -06:00 |
|
Gregory Nutt
|
131b8c5946
|
Move CONFIG_NSH_TMPDIR to CONFIG_LIBC_TMPDIR
|
2014-11-05 07:49:20 -06:00 |
|
Gregory Nutt
|
a7121f98d9
|
Fix some errors that I introduced into NSH telnet this morning
|
2014-10-29 15:25:34 -06:00 |
|
Gregory Nutt
|
21d498f695
|
Fix some typos
|
2014-10-29 10:48:50 -06:00 |
|
Gregory Nutt
|
5d360c72b9
|
Fix problem with trailing whitespace (newline) in Telnet username/password. Noted by Lazlo
|
2014-10-29 10:29:21 -06:00 |
|
Gregory Nutt
|
2719815dd9
|
Update everything under apps/ to use the corrected syslog interfaces
|
2014-10-08 11:34:22 -06:00 |
|
Gregory Nutt
|
79169c711f
|
fix reversed in/out file closing when an error occurs. From Ken Pettit
|
2014-10-03 11:22:37 -06:00 |
|
Gregory Nutt
|
763519b00a
|
NSH Fix ls -l output for regular files
|
2014-09-30 14:41:58 -06:00 |
|
Gregory Nutt
|
f856424ce6
|
Add support for a custom NSH ROMFS startup image header file location. From Martin Lederhilger
|
2014-09-30 06:43:49 -06:00 |
|
Gregory Nutt
|
c26939d9d8
|
More testing, bugfixes and integration of VFS-based named semaphores
|
2014-09-28 17:30:42 -06:00 |
|
Gregory Nutt
|
4a3b3c2d46
|
Eliminate some nshlib warngings
|
2014-09-16 16:08:06 -06:00 |
|
Gregory Nutt
|
d71be2d021
|
Fix more errors associated with posix_spawn system calls
|
2014-09-12 17:09:18 -06:00 |
|
Gregory Nutt
|
4eadcabc1b
|
Several commands must be disabled in the kernel build because they depend on interfaces that are not available outside of the kernel: dd, df, losetup, mkfatfs, mkdr, and ps.
|
2014-09-07 10:46:06 -06:00 |
|
Gregory Nutt
|
d6bcd1a93a
|
Add an install target to all makefiles. For the import build, the top-level Makefile now does two passes: (1) builds libapp.a, then (2) installs the programs (not yet finished)
|
2014-09-06 08:00:47 -06:00 |
|
Gregory Nutt
|
00545910f0
|
Fix NSH PS command: If there are not argument, it would print garbage for argument list
|
2014-09-01 16:47:20 -06:00 |
|
Gregory Nutt
|
7c7a81aa69
|
Rename CONFIG_NUTTX_KERNEL to CONFIG_BUILD_PROTECTED; Partially integrate new CONFIG_BUILD_KERNEL
|
2014-08-29 14:47:22 -06:00 |
|
Gregory Nutt
|
61ab95593f
|
Update README files, Kconfig help comments, and make the network monitor not EXPERIMENTAL
|
2014-08-18 07:24:47 -06:00 |
|
Gregory Nutt
|
bf98b2bbac
|
Change the way PHY interrupts work: disable automatically. Then we have to re-subscribe each time after the interrupt fires
|
2014-08-17 16:51:56 -06:00 |
|
Gregory Nutt
|
5be7dd2140
|
NSH net monitor: use a seamphore instead of boolean; use sem_timedwait instead of a boolean to communicate
|
2014-08-17 14:48:27 -06:00 |
|
Gregory Nutt
|
c18504f820
|
Minor corrections during integration of link status monitor
|
2014-08-17 11:26:02 -06:00 |
|
Gregory Nutt
|
5943cf2c2b
|
Extend the NSH network initialization logic. There is now an option that will create a network monitor thread that will monitor the state of the link. When the link goes down, the code will attempt to gracefully put the Ethernet driver in a down state; When the link comes back, the code will attempt to bring the network back up.
|
2014-08-17 09:51:26 -06:00 |
|
Gregory Nutt
|
1fd7fea390
|
More of the PHY event notification logic change: Fix some compile errors when full feature is enabled; Add some missing ioctol logic
|
2014-08-16 15:04:09 -06:00 |
|