summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2018-10-22Buildbot TestHEADmasterAmar Takhar
2018-10-22Buildbot TestAmar Takhar
2018-10-22Buildbot TestAmar Takhar
2018-10-22Buildbot TestAmar Takhar
2018-10-22Buildbot TestAmar Takhar
2018-10-22Buildbot TestAmar Takhar
2018-10-22Buildbot TestAmar Takhar
2018-10-22Buildbot TestAmar Takhar
2018-10-22tmonetoone: Add yield test caseSebastian Huber
2018-10-22posix: Provide non-thread functions by defaultSebastian Huber
Update #2514.
2018-10-22posix: Provide scheduler support by defaultSebastian Huber
Update #2514.
2018-10-22posix: Provide cancel state/type by defaultSebastian Huber
Sort POSIX sources lexicographically in Makefile.am Update #2514.
2018-10-22Remove superfluous configure checksSebastian Huber
The results of these checks are unused, covered by other checks or check obvious things. Update #3409.
2018-10-22Remove checks for flockfile(), etc. declarationsSebastian Huber
Declarations provided by Newlib since 2002. Update #3409.
2018-10-22Remove getcwd()Sebastian Huber
This function is provided by Newlib since 2000. Update #3409.
2018-10-22Remove optional getrusage() declarationSebastian Huber
Declaration provided by Newlib since 2014. Update #3409.
2018-10-22Remove ttyname()Sebastian Huber
This function is provided by Newlib since 2000. Update #3409.
2018-10-22Remove __assert()Sebastian Huber
This function is provided by Newlib since 2000. Update #3409.
2018-10-22Remove isatty()Sebastian Huber
These functions are provided by Newlib since 2000. Update #3409.
2018-10-22Remove strlcat(), strlcpy(), strsep(), readdir_r()Sebastian Huber
These functions are provided by Newlib since 2002. Update #3409.
2018-10-22Support O_NOFOLLOW open() flagSebastian Huber
Close #3546.
2018-10-22Support O_CLOEXEC open() flagSebastian Huber
Make sure this flag is ignored and does not prevent a successful open. Close #3547.
2018-10-22psxreaddir: Adjust test due to opendir() changesSebastian Huber
Update #3545.
2018-10-18check-networking.m4: Disable legacy stack for x86_64 and epiphanyJoel Sherrill
x86_64 is 64-bits and too new for the legacy stack to support. epiphany is a small target and cannot compile the legacy (or new) stack.
2018-10-18mpc8260ads/start/bspstart.c: Fix unused function warningJoel Sherrill
2018-10-18qemuppc/start/cmain.c: Cast args to memcpy and bzero to fix warningsJoel Sherrill
2018-10-18gen5200/mscan/mscan.c: Fix printf() format warningJoel Sherrill
2018-10-18or1k/shared/cache/cache.c: Remove unused methodsJoel Sherrill
2018-10-18gdbarmsim/include/bsp.h: Include <sys/stat.h> to fix warningJoel Sherrill
2018-10-18Support O_DIRECTORY open() flagSebastian Huber
Close #3545.
2018-10-18bsp/atsam: Add const qualifier to AES_SetInput()Sebastian Huber
2018-10-18console: Be fair in simple console readSebastian Huber
Wait for one tick in case no character is available after a call to getchark(). Otherwise the system is constantly busy within an input loop (for example in the RTEMS shell). The polled Termios driver uses the same approach.
2018-10-17serial/ns16550: Fix precision clock synthesizerSebastian Huber
The precision clock synthesizer support broke the driver on the QorIQ P1020. On this device the Alternate Function Register is accessed with DLAB == 1 instead of the FIFO Control Register (FCR). Restructure the code to account for this.
2018-10-17bsp/imx7: Add getchark() supportSebastian Huber
2018-10-15bsps/arm: Recognize .tm_clone_table input sectionSebastian Huber
2018-10-15bsp/tms570: Simple fix to resolve macro redefinitions.Pavel Pisa
closes #3347
2018-10-15build: Remove specialized CPPFLAGSSebastian Huber
Close #3375.
2018-10-14libtests/Makefile.am: Add CPU_CFLAGS to rtems-ld invocationJoel Sherrill
closes #3401, #3402.
2018-10-12tmtests: Fix unused variable warningsSebastian Huber
2018-10-12fsclose01: Fix uninitialized variable warningSebastian Huber
2018-10-12posix: Fix unused result warningSebastian Huber
2018-10-12build: Fix build on WindowsSebastian Huber
Avoid a long argument list while creating the librtemscpu.a library archive.
2018-10-11tmtests/tmonetoone: New test programSebastian Huber
2018-10-11telnetd: Add server port to configurationSebastian Huber
Close #3543.
2018-10-11telnetd: Create sessions at startSebastian Huber
Update #3543.
2018-10-10telnetd: Allocate the server contextSebastian Huber
Update #3543.
2018-10-10telnetd: Create server socket at startSebastian Huber
Update #3543.
2018-10-10telnetd: Rename shell_args to telnetd_sessionSebastian Huber
Update #3543.
2018-10-10telnetd: Simplify task spawn functionSebastian Huber
Use the minimum task size for the telnet server task since it has to deal only with simple socket operations. Update #3543.
2018-10-10build: Include header.am in cpukit/Makefile.amSebastian Huber
Include all cpukit/*/header.am files in cpukit/Makefile.am. This gets rid of all subtree Makefile.am and the sudirs hack.