Manuel Stühn
|
3002023798
|
time.h: Add timeradd(), timersub(), timerclear(), timerisset(), and timercmp() as macros. These are non-POSIX interfaces, but included in most BSD deriviatives, included Linux. From Manuel Stühn
|
2015-12-23 15:13:01 -06:00 |
Gregory Nutt
|
86935ca2dc
|
Update README
|
2015-12-23 09:49:58 -06:00 |
Gregory Nutt
|
3036e53be4
|
Update TODO list
|
2015-12-23 08:19:13 -06:00 |
Gregory Nutt
|
198cfd0224
|
Forgot to add a file needed in the last commit
|
2015-12-22 12:06:05 -06:00 |
Gregory Nutt
|
b90da3f27b
|
waitpid: CRITICAL BUGFIX. Add a reference counting mechansim to prevent wait from using stale memory that was freed by the exiting task
|
2015-12-22 11:48:17 -06:00 |
Gregory Nutt
|
8f540fd81a
|
Trivial fix to typo in a comment
|
2015-12-21 22:24:43 -06:00 |
Gregory Nutt
|
a2e1ece873
|
RTC: Handle RTC failures. If mktime is called with garbage, it may crash
|
2015-12-21 14:39:40 -06:00 |
Gregory Nutt
|
a696b807fb
|
PCF65263: Correct readback verification of seconds register
|
2015-12-21 14:00:25 -06:00 |
Gregory Nutt
|
1e96a07346
|
Kconfig: CONFIG_BUILD_KERNEL should not be experimental
|
2015-12-21 10:58:59 -06:00 |
Gregory Nutt
|
2c0770a4b6
|
Update submodules
|
2015-12-19 16:34:28 -06:00 |
Gregory Nutt
|
a12eeaf899
|
Update submodules
|
2015-12-17 15:32:25 -06:00 |
Gregory Nutt
|
cc48a12464
|
Update submodules
|
2015-12-16 12:47:14 -06:00 |
Gregory Nutt
|
dc30bb5a54
|
Update submodules
|
2015-12-16 09:06:24 -06:00 |
Gregory Nutt
|
435d7597cf
|
sycalls: Fix some missing quotes in the syscall CSV file
|
2015-12-15 17:49:07 -06:00 |
Gregory Nutt
|
797798d4ea
|
Update ChangeLog
|
2015-12-15 17:21:34 -06:00 |
Gregory Nutt
|
b1a0171d0f
|
Fix a missed name change in a Kconfig file
|
2015-12-15 08:43:18 -06:00 |
Gregory Nutt
|
8ab93fdf98
|
Change name of drivers/discrete back to drivers/ioexpander
|
2015-12-15 08:40:34 -06:00 |
Gregory Nutt
|
78f2ce05f8
|
drivers: Move discrete user LED drivrs from drivers/discrete to drivers/leds
|
2015-12-15 08:23:53 -06:00 |
Gregory Nutt
|
d62a626703
|
Adds a driver for the PCA9635PW I2C LED driver IC which can be used to control the intensity of up to 16 LEDs. From Alexander Entinger
|
2015-12-15 08:05:10 -06:00 |
Gregory Nutt
|
ebfead6f0d
|
Update submodules
|
2015-12-14 15:42:02 -06:00 |
Gregory Nutt
|
09f236aea4
|
Update ChangeLog
|
2015-12-14 13:20:47 -06:00 |
Gregory Nutt
|
28af090508
|
Update submodule
|
2015-12-13 08:13:46 -06:00 |
Gregory Nutt
|
3beff9568e
|
Module: Fix up system calls for changes to insmod prototype
|
2015-12-13 08:12:28 -06:00 |
Gregory Nutt
|
e8d0f85c8b
|
Modules: Add mod_setsymtab to set global symtol table once. Now we can remove symbol table parameters from the insmod call. This will make implementing an NSH insmod command much easier
|
2015-12-13 08:10:01 -06:00 |
Gregory Nutt
|
076f382f79
|
Module: Remove some unused members of a structure
|
2015-12-13 06:48:30 -06:00 |
Gregory Nutt
|
917dbc8540
|
modules: Add more information to registry just for procfs
|
2015-12-12 18:56:32 -06:00 |
Gregory Nutt
|
795ddd7e80
|
OS modules: Add basic procfs support. A module registry that will eventually be used to support lsmod
|
2015-12-12 17:42:25 -06:00 |
Gregory Nutt
|
a908a61c5a
|
Various module-related cosmetic changes
|
2015-12-12 12:55:50 -06:00 |
Gregory Nutt
|
303123deb9
|
Add syscall support for insmod and rmmod
|
2015-12-12 11:11:09 -06:00 |
Gregory Nutt
|
040835de00
|
Add an implementation of rmmod
|
2015-12-12 10:51:54 -06:00 |
Gregory Nutt
|
658a2a6275
|
Update ChangeLog
|
2015-12-12 09:41:47 -06:00 |
Gregory Nutt
|
9ef33d8ebc
|
Merge remote-tracking branch 'origin/master' into module
|
2015-12-12 09:38:44 -06:00 |
Gregory Nutt
|
0efcb5445b
|
Fix compile error when cache coherency logic is enabled
|
2015-12-12 09:38:06 -06:00 |
Gregory Nutt
|
49554fe4fc
|
Move module support from binfmt/ to sched/ so that it can be configured and built independently from binfmt features
|
2015-12-12 07:09:17 -06:00 |
Gregory Nutt
|
44e45f0f91
|
insmod is code complete and ready for test
|
2015-12-11 10:55:21 -06:00 |
Gregory Nutt
|
f45e2a247e
|
Cosmetic fix to comment
|
2015-12-11 10:06:40 -06:00 |
Gregory Nutt
|
05cb7a9043
|
Call initializer entry point on start-up; do not create a task
|
2015-12-11 07:27:45 -06:00 |
Gregory Nutt
|
251e8395c7
|
Mostly cosmetic renaming to straighten out namespace
|
2015-12-10 16:56:10 -06:00 |
Gregory Nutt
|
8bcf35ff39
|
binfmt/libmodule: Add support for kernel modules. Initial commit is just the ELF module support with name changes
|
2015-12-10 09:53:31 -06:00 |
Gregory Nutt
|
f9f19d867b
|
Trivial change to TODO list
|
2015-12-10 09:47:58 -06:00 |
Gregory Nutt
|
4e3b7e3358
|
Update ChangeLog
|
2015-12-10 06:33:14 -06:00 |
Gregory Nutt
|
c9925305b5
|
Same important bug as c623af03a0ee8ac041fc22051781047d6cb9cc75, but in a different location
|
2015-12-09 10:17:33 -06:00 |
Gregory Nutt
|
208b4643ce
|
Sync submodules
|
2015-12-08 13:31:44 -06:00 |
Gregory Nutt
|
e00bab70b7
|
Refresh all configurations that have Telnetd enabled; those configurations now also need the telnet driver
|
2015-12-08 13:31:43 -06:00 |
Gregory Nutt
|
0944c6db8b
|
Merged in paulpatience/nuttx/arch_board_custom_dir_relpath (pull request #40)
Top-level Makefiles: Check if CONFIG_ARCH_BOARD_CUSTOM_DIR_RELPATH is enabled
|
2015-12-08 10:27:11 -06:00 |
Gregory Nutt
|
d1a3c3aa3b
|
Update ChangeLog
|
2015-12-08 10:13:27 -06:00 |
Paul A. Patience
|
b669d080db
|
Top-level Makefiles: Check if CONFIG_ARCH_BOARD_CUSTOM_DIR_RELPATH is enabled
|
2015-12-08 11:09:30 -05:00 |
Gregory Nutt
|
4a7e28ba96
|
CDC/ACM: Fix a bad default value in last commit
|
2015-12-08 07:33:49 -06:00 |
Gregory Nutt
|
513cc08c7f
|
change default size of CDC/ACM serial buffer sizes
|
2015-12-07 17:18:14 -06:00 |
Gregory Nutt
|
8fdb173090
|
drivers/net/telnet.c: Now works like the loop device. A new interface called telnet_initialize() registers a telnet session "factory" device at /dev/telnet. Via ioctl, the factory device can create instances of the telnet character devices at /dev/telnetN to support Telnet sessions.
|
2015-12-07 13:48:06 -06:00 |