summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* user/hosts/posix.rst: Update Ubuntu instructions.Joel Sherrill2019-12-121-2/+3
| | | | | | | | | | Note that the ticket has instructions for what to do if the error message "Error :: You must put some 'source' URIs in your sources.list" is reported. As this occurred on an Ubuntu version that was not LTS, it is not being added. If this error occurs in the future on a LTS release, then add this information. closes #3416.
* region_manager.rst: Add docs for region get info and get free infoJoel Sherrill2019-12-121-0/+104
| | | | closes #3751.
* user/hardware/tiers.rst: Merge info from Wiki.Joel Sherrill2019-12-121-5/+28
| | | | | | | | Tiers had a write up on the Wiki which was similar but different. Merged content from the Wiki which allows the Wiki page to be deleted. closes #3831.
* c-user: Obsolete CONFIGURE_MAXIMUM_MRSP_SEMAPHORESSebastian Huber2019-12-111-28/+7
| | | | Update #3833.
* c-user: CONFIGURE_LIBIO_MAXIMUM_FILE_DESCRIPTORSSebastian Huber2019-12-111-36/+30
| | | | | | | | Move CONFIGURE_LIBIO_MAXIMUM_FILE_DESCRIPTORS to general system configuration. Remove now empty "C Library Support Configuration" section. Update #3836.
* c-user: Move CONFIGURE_MEMORY_OVERHEADSebastian Huber2019-12-111-37/+29
| | | | | | | Move CONFIGURE_MEMORY_OVERHEAD to general system configuration. Remove now empty "Seldom Used Configuration Parameters" section. Update #3836.
* c-user: Move unlimited configuration optionsSebastian Huber2019-12-111-9/+73
| | | | | | Rename unlimited subsection headers. Update #3836.
* c-user: Move unlimited options to general configSebastian Huber2019-12-111-65/+3
| | | | Update #3836.
* c-user: Move basic system configurationSebastian Huber2019-12-111-443/+443
| | | | | | | Move the basic system configuration to the front. Rename it to "General System Configuration". Update #3836.
* user: Add frdme310arty BSP varientPragnesh Patel2019-11-291-0/+8
| | | | | | Signed-off-by: Pragnesh Patel <pragnesh.patel@sifive.com> Update #3785.
* bsp-howto/miscellanous_support.rst: Fix grammar mistake.Joel Sherrill2019-11-221-1/+1
|
* user: Add hints for macOS CatalinaSebastian Huber2019-11-221-10/+21
| | | | | Use macOS throughout. Order release hints so that the latest macOS release comes first.
* barrier: Reword "forever" -> "until [..] released"Martin Erik Werner2019-11-061-1/+1
|
* barrier: Remove more semaphore leftoversMartin Erik Werner2019-11-061-2/+1
| | | | | Remove another mention of options which is available for semaphore but not for barriers.
* barrier: Fix cticket->ticket typoMartin Erik Werner2019-11-061-2/+2
|
* barrier: Remove unfinished sentenceMartin Erik Werner2019-11-061-4/+3
| | | | | | | | | | | Remove the unfinished sentence "Since a barrier is, by definition, never immediately [...]" and jump directly to "The task may wait [forever or for a timeout]" instead. I cannot figure out what the unfinished sentence is supposed to be - "released"? "passed"?
* barrier: Remove leftover semaphore remnantsMartin Erik Werner2019-11-061-31/+7
| | | | | | | | | | | | Remove various incorrect references to "lock" and "obtain" and to an option set which is not part of the barrier interface. It looks like the barrier documentation was started based on a copy of the semaphore documentation and these things are surviving remnants. Also remove an unfinished sentence in the barrier wait description, since the intended information is already provided in the under the NOTE label.
* README.txt: Add info on CentOS 7 Software Collections for Python 3Joel Sherrill2019-11-061-2/+24
|
* c-user/directive_status_codes.rst: Add RTEMS_IO_ERROR and RTEMS_INTERRUPTEDJoel Sherrill2019-11-061-0/+4
|
* posix-compliance: Add ndbm.h supportJoel Sherrill2019-11-062-893/+893
|
* c-user: Document RTEMS_FATAL_SOURCE_HEAPSebastian Huber2019-10-311-0/+4
| | | | Close #3806.
* user: Document patch review processSebastian Huber2019-10-303-3/+156
|
* user: Update contributing sectionSebastian Huber2019-10-301-22/+19
|
* Move contributing content from eng to userSebastian Huber2019-10-303-152/+146
|
* eng: Update issue tracking sectionSebastian Huber2019-10-301-13/+8
|
* waf/common: Fix UTF-8 encoding of HTML inliner output on Python3.Chris Johns2019-10-291-5/+13
|
* user/rsb: Update 3rd party package build and add packaging details.Chris Johns2019-10-136-327/+592
|
* bsps/beagle: update i2c sectionVijay Kumar Banerjee2019-09-261-3/+3
|
* FreeBSDL: Add command to improve waf's performance with Python3.Chris Johns2019-09-051-2/+11
|
* Address several issues from compiling examplesMartin Erik Werner2019-09-0320-69/+71
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Compiling the code from examples "code-block:: c" along with public includes and a bsp exposed a few issues amongst a lot of false positives. Address some of these: * Terminate struct declarations with ';'. Mainly for pedantic correctness. * Show ptrdiff_t instead of size_t for the sbrk() prototype, matching the current argument type in rtems. * Replace some occurrences of unsigned16 with uint16_t. * Fix odd type declaration, "uint8_t char*" -> "char*". * Use appropriate helper to get chain head instead of invalid access to nonexistent struct member. * Remove several excess '\' escapes. * Use RTEMS_SELF instead of undefined SELF. * Use rtems_task instead of void for task functions. * Add missing stack size parameter in task creation. * Use rtems_interrupt_level instead of undefined rtems_interrupt. * Correct return value format for rtems_object_id_get_api() rtems_object_id_get_index() (enum and uint16_t) and also fix corresponding print formatting. * Correct return value documentation for rtems_object_id_get_class(), rtems_object_id_get_node() and rtems_object_id_get_index() int -> uint32_t. * Use RTEMS_SUCCESSFUL instead of undefined RTEMS_STATUS_SUCCESSFUL and fix return value variable name in rate monotonic examples. * Use RTEMS_TIMEOUT instead of undefined TIMEOUT and RTEMS_PERIOD_STATUS instead of undefined STATUS. * Add missing fields to ftpd configuration. * Correct parameter types in ftpd hook prototype, unsigned char * -> void *. * Fix various code-block:: attributes, c -> makefile and c -> shell. * Add missing parenthesis in socket buffer memory calculation example. * Remove typedef in declaration of mq_attr since it is defiend without typedef in reality. * Update siginfo_t declaration to match current reality. * Update shell user command definition example to include mode, uid and gid.
* Update docs for log mode change and JSON reportingKinsey Moore2019-08-221-8/+21
| | | | | | The option --report-mode has been changed to --log-mode to reduce ambiguity and --report-format has been added along with --report-path for machine readable test reporting.
* Add steps to test Newlib patch.Vaibhav Gupta2019-08-201-6/+35
| | | | | | Update the checksum to be used for the Newlib patches. Earlier it was msd5, but it is depreciated for security reasons. Now RSB accepts sha512.
* Remove back-slash in 'pacman' command in 'PDF' section under Arch Linux ↵Vaibhav Gupta2019-08-151-1/+1
| | | | (installation of Sphinx).
* user/hosts/posix.rst: Improve Ubuntu python 2 devel package instructionsJoel Sherrill2019-08-151-3/+9
|
* hosts/posix.rst: Fix typo of sudu to sudoJoel Sherrill2019-08-151-1/+1
| | | | Closes #3754.
* hosts/windows.rst: Add warning for spaces in PATHJoel Sherrill2019-08-151-0/+16
|
* user/rsb/deployment.rst: Fix typo.Joel Sherrill2019-08-151-1/+1
|
* user/index: Add myself to the list of copyrightsVijay Kumar Banerjee2019-08-151-0/+1
|
* common: Show page references after internal linksSebastian Huber2019-08-142-59/+1
| | | | | | | The custom RTEMS extension produced quite verbose references like "Chapter 3 - Section 7 - Bla blub". This may distract the reading flow. Use a standard Sphinx option to show page references instead, e.g. "Bla blub (page 11)". This has some value for printed out documents.
* user: Update bug reporting sectionSebastian Huber2019-08-141-10/+24
| | | | | | Include information from https://devel.rtems.org/wiki/NewTicket
* user/exe: Add link reference in device-treeVijay Kumar Banerjee2019-08-112-1/+3
|
* user/bsps: Fix typo in beagleVijay Kumar Banerjee2019-08-081-2/+2
|
* user: Improve bug report sectionSebastian Huber2019-08-084-11/+183
| | | | | | | | | | | The new content is based on the wiki page: https://devel.rtems.org/wiki/Developer/Bug_Reporting The goal is to remove the wiki page and direct the "New ticket" page to this user manual section. Some content of the wiki page should move to the "Contributing" sections since it is not directly related to bug reporting, e.g. managing existing bugs.
* user/exe: Add Device Tree sectionVijay Kumar Banerjee2019-08-073-19/+95
|
* user: Move support sections to top levelSebastian Huber2019-08-067-120/+156
| | | | | This is a preparation step to move the bug reporting procedure from the wiki to the user manual and to add a contributing section.
* common: Align "Build Logs" with other list namesSebastian Huber2019-08-051-1/+1
|
* user/bsps : Fix formatting and typo in arm/beagleVijay Kumar Banerjee2019-07-271-18/+37
|
* eng: Add bibliographySebastian Huber2019-07-242-0/+7
|
* refs: Update EARS referencesSebastian Huber2019-07-241-2/+20
|
* refs: Add ECSS standard referencesSebastian Huber2019-07-231-0/+51
| | | | | Add the ECSS standards in a separate block. Use a custom label scheme to make citations easier.