summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
...
* Update header.rstSebastian Huber2019-01-091-10/+10
| | | | Remove trailing slashes in URLs. Fix bug reporting URL.
* Add common header.rst to reduce copy and pasteSebastian Huber2019-01-0915-322/+37
|
* Remove superfluous word "Copyright"Sebastian Huber2019-01-091-1/+1
| | | | The © symbol is sufficient.
* Update general copyright noticeSebastian Huber2019-01-091-1/+1
| | | | Update year and add "and contributors".
* Replace build date with Git hash and commit dateSebastian Huber2019-01-093-47/+39
| | | | The usage of a build date prevents reproducible builds.
* cpu-supplement: Update ARM multilibsSebastian Huber2019-01-071-7/+18
|
* c-user: Fix typosFrédéric Jouault2019-01-042-4/+4
| | | | Close #3261.
* sparc_v8_stacks_regwin.rst: Add middle initail for Peter MagnussonJoel Sherrill2018-12-201-2/+2
| | | | | | Peter requested this after reviewing the converted content. He noted that it was a nit but he had consistently used his middle initial in all academic settings and wanted to be consistent.
* Eliminate UTF-8 characters except superscripted 2 in i2cJoel Sherrill2018-12-209-22/+22
|
* eng: Unicode char (U+200B)Sebastian Huber2018-12-201-3/+3
|
* common/waf.py: Fix indentation.Christian Mauderer2018-12-181-1/+1
| | | | Python 3 produces an error if indentation is mixed tabs and spaces.
* eng/coding-conventions.rst: Convert TBD to Rest Format (GCI 2018)Pritish Jain2018-12-171-2/+244
|
* eng/coding-doxygen: Fix errorsMarçal Comajoan Cara2018-12-171-352/+360
| | | | This work was part of GCI 2018.
* eng/coding-file-hdr.rst: Fix file formatting (GCI 2018)Sal2018-12-171-23/+25
|
* eng/coding-doxygen.rst: Clean up and make subsubsectionsJoel Sherrill2018-12-171-315/+362
|
* Converted Doxygen Best Practices Documentation to Rest format (GCI 2018)zehata2018-12-171-1/+417
|
* coding-naming: Convert TBD to Rest format (GCI 2018)Pritish Jain2018-12-171-2/+85
|
* images/eng/Git-personalrepo: Redrawn image (GCI 2018)Marçal Comajoan Cara2018-12-172-0/+33
| | | | | Redraw images/eng/Git-personalrepo as SVG and PNG with a better color palette.
* eng/vc-users: Convert wiki page to Rest (GCI 2018)Marçal Comajoan Cara2018-12-171-2/+641
| | | | | | | | | Converted https://devel.rtems.org/wiki/Developer/Git/Users to Rest, and TBDs and wiki TODOs into comments. Also changed http links to https (the ones that are possible), corrected typos, updated learning resources links and added formattings. This work was part of GCI 2018.
* eng/vc-authors: Convert wiki page to Rest (GCI 2018)Marçal Comajoan Cara2018-12-172-2/+353
| | | | | | | | | Converted https://devel.rtems.org/wiki/Developer/Git/Committers to Rest, and TBDs and wiki TODOs into comments. Also changed http links to https (the ones that are possible), corrected some typos, created a folder for eng images and added some formatting. This work was part of GCI 2018.
* management: Convert TBD to rest Format (GCI 2018)Pritiah Jain2018-12-172-2/+154
|
* eng/conf.py: Use new short name of SW Eng HandbookMarçal Comajoan Cara2018-12-171-1/+1
|
* eng/license-requirements.rst: Add a TBD for BSD infoJoel Sherrill2018-12-171-0/+1
|
* coding-doxygen-bsp.rst, coding-file-hdr.rst: Fix formattingJoel Sherrill2018-12-172-321/+651
|
* coding-file-hdr: Convert TBD to Rest Format (GCI 2018)Pritish Jain2018-12-171-3/+33
|
* coding-doxygen-bsp: Convert TBD to rest Format(GCI 2018)Pritish Jain2018-12-171-4/+384
|
* coding-gen-patch:Convert TBD to rest Format(GCI 2018)Pritish Jain2018-12-171-2/+27
|
* eng/coding-80cols: Convert wiki page to RestMarçal Comajoan Cara2018-12-171-2/+146
| | | | | | | Converted https://devel.rtems.org/wiki/Developer/Coding/80_characters_per_line to Rest, and TBDs into comments. This work was part of GCI 2018.
* eng/appendix-a: convert to a tableMarçal Comajoan Cara2018-12-171-50/+106
| | | | | | | Convert text to a table, TBDs into comments and add missing formatting. This work was part of GCI 2018.
* eng/test-suites.rst: Update to reflect current realityJoel Sherrill2018-12-171-6/+24
|
* test-suites:Convert TBD to rest Format(GCI 2018)Pritish Jain2018-12-171-3/+32
|
* Initial start of converting the Word outline to RestJoel Sherrill2018-12-1731-0/+650
| | | | | Thanks to Scott Zemerick <scott.zemerick@tmctechnologies.com> for the analysis and ideas that led to this.
* Integrate images redrawn as part of GCI 2018Marçal Comajoan Cara2018-12-1125-3/+817
| | | | | | | All of the redrawings were made by me except images/c_user/states which was made by LukaMag. This patch serves to update all the images. This work was part of GCI 2018.
* c-user: rtems_scheduler_get_maximum_priority()Sebastian Huber2018-12-101-0/+37
| | | | Close #3636.
* posix-compliance: Change utimes() from sys/times.h to sys/time.hMarçal Comajoan Cara2018-12-092-8/+8
| | | | | | | | | | | | | | | | | | | In the RTEMS POSIX 1003.1 Compliance Guide it says: The following methods and variables in <sys/times.h> are supported: - times() - utimes() But according to the official POSIX Specifications http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/sys_times.h.html, <sys/times.h> only declares times(), and utimes() is decleared by <sys/time.h> (notice that it's time, not times) according to http://pubs.opengroup.org/onlinepubs/9699919799/functions/utimensat.html and http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/sys_time.h.html. This patch fixes this error. This work was part of GCI 2018.
* Fix error messages when Sphinx version cannot be checked.Amar Takhar2018-12-051-2/+2
| | | | | | | | | | This is kind of a dual-check since it checks for the version while simultaneously checking to see if Sphinx exists on the system. Changed the error messages to be clear on the error and removed a reference to version which cannot be set due to the check failure. Reported by: Shashvat Jain
* posix-users/input_and_output.rst: Document errors for mount() and unmount()Joel Sherrill2018-11-211-4/+15
|
* posix-users/device_and_class_specific.rst: Add PrototypesMarçal Comajoan Cara2018-11-211-20/+28
| | | | | | | Add and update Device and Class Specific APIs in POSIX Users Guide. This work was part of GCI 2018.
* posix-users/input_and_output.rst: Add PrototypesMarçal Comajoan Cara2018-11-211-28/+56
| | | | | | | Add and update Prototypes to Input and Output APIs in POSIX Users Guide. This work was part of GCI 2018.
* posix-users/memory_managment.rst: Add PrototypesMarçal Comajoan Cara2018-11-211-0/+22
| | | | | | Add Prototypes to Memory Management APIs in POSIX Users Guide. This work was part of GCI 2018.
* posix-users/system_database.rst: Add PrototypesMarçal Comajoan Cara2018-11-211-4/+36
| | | | | | Add Prototypes to System Database APIs in POSIX Users Guide. This work was part of GCI 2018.
* posix-users/thread_cancellation.rst: Add PrototypesMarçal Comajoan Cara2018-11-211-3/+18
| | | | | | Add Prototypes to Thread Cancellation APIs. This work was part of GCI 2018.
* posix-users/language_specific_services.rst: Add Prototypes to Language ↵Marçal Comajoan Cara2018-11-211-42/+48
| | | | | | Specific Service APIs This work was part of GCI 2018.
* c-user: Remove 16-bit object identifiersSebastian Huber2018-11-211-36/+8
| | | | Close #3603.
* cpu-supplement/sparc.rst: Merge Annul Slot Explanation (GCI 2018)zehata2018-11-201-0/+45
| | | | | This content originated as an email response from Jiri Gaisler to Joel Sherrill in response to a question.
* cpu-supplement/sparc_v8_stacks_regwin.rst: Add credit boxJoel Sherrill2018-11-201-0/+8
|
* cpu-supplement/sparc_v8_stacks_regwin.rst: Complete FormattingMarçal Comajoan Cara2018-11-201-49/+48
| | | | This work was part of GCI 2018.
* images/cpu_supplement/sparcwin.svg: New file (GCI 2018)Marçal Comajoan Cara2018-11-191-0/+176
| | | | File was missed in previous commit.
* cpu-supplement/sparc_v8_stacks_regwin.rst: Simplify section titleJoel Sherrill2018-11-191-2/+2
|
* Improve SPARC Calling Overview Webpage conversionMarçal Comajoan Cara2018-11-196-209/+187
| | | | | | | | | Fixed tables, typos, redrawn images and converted ASCII art to ditaa and PNG, and improved the overall format. This work was part of GCI 2018. Closes #3567.