summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2018-10-10telnetd: Remove keep stdio featureSebastian Huber
The Telnet service started via rtems_telnetd_start() had a keep stdio feature. This just created a task and executed the command function in a loop. For this kind of service we do not library support. This can be done by an application task on its own. Remove this feature and provide only the real Telnet server functionality. Use syslog() for error and status messages. Add test program for the Telnet server. Close #3542.
2018-10-10build: Remove local.amSebastian Huber
2018-10-10build: Directly reference libraries in testsSebastian Huber
Remove use of TMPINSTALL_FILES.
2018-10-10build: Merge score/cpu/*/Makefile.amSebastian Huber
2018-10-10build: Merge libmisc/Makefile.amSebastian Huber
2018-10-10build: Merge libnetworking/Makefile.amSebastian Huber
2018-10-10build: Merge zlib/Makefile.amSebastian Huber
2018-10-10build: Merge telnetd/Makefile.amSebastian Huber
2018-10-10build: Merge score/Makefile.amSebastian Huber
2018-10-10build: Merge rtems/Makefile.amSebastian Huber
2018-10-10build: Merge pppd/Makefile.amSebastian Huber
2018-10-10build: Merge posix/Makefile.amSebastian Huber
2018-10-10build: Merge mghttpd/Makefile.amSebastian Huber
2018-10-10build: Merge libstdthreads/Makefile.amSebastian Huber
2018-10-10build: Merge librpc/Makefile.amSebastian Huber
2018-10-10build: Merge libpci/Makefile.amSebastian Huber
2018-10-10build: Merge libmd/Makefile.amSebastian Huber
2018-10-10build: Merge libi2c/Makefile.amSebastian Huber
2018-10-10build: Merge libgnat/Makefile.amSebastian Huber
2018-10-10build: Merge libfs/Makefile.amSebastian Huber
2018-10-09build: Merge libdrvmgr/Makefile.amSebastian Huber
2018-10-09build: Merge libdl/Makefile.amSebastian Huber
2018-10-09build: Merge libdebugger/Makefile.amSebastian Huber
2018-10-09build: Merge libcsupport/Makefile.amSebastian Huber
2018-10-09build: Merge libcrypt/Makefile.amSebastian Huber
2018-10-09build: Merge libblock/Makefile.amSebastian Huber
2018-10-09build: Merge libfdt/Makefile.amSebastian Huber
2018-10-09build: Merge ftpd/Makefile.amSebastian Huber
2018-10-09build: Merge dev/Makefile.amSebastian Huber
2018-10-09build: Move sapi/Makefile.amSebastian Huber
2018-10-09build: Remove specialized CPPFLAGSSebastian Huber
2018-10-09shell: Use #include "..." for local header filesSebastian Huber
Update #3375.
2018-10-09telnetd: Ignore setsockopt() return statusSebastian Huber
Update #3529.
2018-10-09ftpd: Restructure chroot() handling.Sebastian Huber
Remove superfluous setting of errno = 0. Update #3530.
2018-10-09leon: do not use -mfix-{device} with ClangDaniel Hellstrom
Clang do not support -mfix-gr712rc, -mfix-ut700 and -mfix-ut699. Therefore we adjust the CPU_CFLAGS to remove these when compiling with Clang. Instead use GR712RC: -mcpu=gr712rc GR740: -mcpu=gr740 UT699/UT700: Not currently supported by clang, use LEON3 BSP.
2018-10-09leon, spwtdp: Initial driver commitJavier Jalle
2018-10-09bsps/arm: Fix ctor/dtor invocation orderSebastian Huber
Remove obsolete .ctor and .dtor output sections.
2018-10-09posix: Remove static assertionSebastian Huber
Standard C does not allow pointer operands in an integer constant expressions. GCC issues only a -Wpedantic warning in the removed static assertion. However, clang is pedantic by default and issues an error. Rely on the test case instead.
2018-10-08ftpd: Remove superfluous temporary bufferSebastian Huber
Update #3530.
2018-10-08ftpd: Check return status of getsockname()Sebastian Huber
Update #3530.
2018-10-05ftpd: Fix insecure chroot() handlingSebastian Huber
Ensure that the rtems_libio_set_private_env() was successful before the chroot(). Update #3530.
2018-10-05ftpd: Avoid resource leakSebastian Huber
Update #3530.
2018-10-05ftpd: Avoid use of uninitialized memorySebastian Huber
Update #3530.
2018-10-05ftpd: Avoid malloc() and sscanf()Sebastian Huber
Move the user name to the session information. Update #3530.
2018-10-05ftpd: Remove FTPD_SessionInfo_t::pass memberSebastian Huber
There is no need to keep the password throughout the session. Update #3530.
2018-10-05ftpd: Avoid NULL pointer checks before free()Sebastian Huber
They are superfluous and just bloat the code. Update #3530.
2018-10-05jffs2: Avoid use of constant register variableSebastian Huber
Avoid the use of a constant register variable which is used in some conditions. This gets rid of a clang -Wsometimes-uninitialized warning.
2018-10-05Fix rbtree_postorder_for_each_entry_safe()Sebastian Huber
Use the non-standard typeof operator to avoid code generation errors with clang and use of uninitialized variable warnings with GCC and Coverity Scan. Update #3465.
2018-10-05score: Fix legacy RTEMS_STATIC_ASSERT()Sebastian Huber
In standard C pointer operands are not allowed in integer constant expressions. Avoid a static assertion based on an array typedef since this could lead to warnings ("variably modified 'x' at file scope" and "typedef 'x' locally defined but not used"); This implementation requires unique messages.
2018-10-05tests: Use rtems_task_exit()Sebastian Huber
Update #3533.