summaryrefslogtreecommitdiff
path: root/doc/CMakeLists.txt
Commit message (Collapse)AuthorAgeFilesLines
* doxygen: Remove licenceSaya Sugiura2019-07-191-2/+0
| | | | Signed-off-by: Saya Sugiura <ssugiura@jp.adit-jv.com>
* doc: Use pandoc to generate HTML from markdownSaya Sugiura2019-07-191-0/+26
| | | | Signed-off-by: Saya Sugiura <ssugiura@jp.adit-jv.com>
* doc: Create missing markdown documentsSaya Sugiura2019-07-191-5/+26
| | | | | | | | | Following documents are created: - dlt-control.1.md - dlt-adaptor-stdin.1.md - dlt-adaptor-udp.1.md Signed-off-by: Saya Sugiura <ssugiura@jp.adit-jv.com>
* doc: Documentation updateSaya Sugiura2019-07-191-4/+8
| | | | | | | | | | | | | | | | As written in README, following documents are removed and necessary information is moved to dlt_for_developers.md: - doc/dlt_user_manual.txt - doc/dlt_cheatsheet.txt - doc/dlt_book.txt Also following documents are removed: - doc/dlt_howto_debug.txt - doc/dlt_loglevel_explained.txt TODO: Update doc/dlt_design_specification.txt Signed-off-by: Saya Sugiura <ssugiura@jp.adit-jv.com>
* cmake: Allow build as a subproject (#145)Vo Trung Chi2019-07-091-14/+14
| | | | | | Use PROJECT_* instead of CMAKE_* to allow build as a subproject of another cmake project. Signed-off-by: Vo Trung Chi <Chi.VoTrung@vn.bosch.com>
* doc: Update doc/CMakeList.txt after cleanup documentation (#111) (#117)thanhbnq2019-04-161-147/+131
| | | | | | | | | | * doc: Update after cleanup documentation - Add ascii_doc check - Spaces instead of tabs in doc/CMakeList.txt - Change style in markdown files to avoid error while converting from md to html - Since manpages are generated by pandoc, "doc-man" part is removed from doc/CMakeList.txt Signed-off-by: thanhbnq <thanh.buinguyenquoc@vn.bosch.vn>
* doc: Fix PANDOC_TOOL conditionSaya Sugiura2019-03-141-2/+2
| | | | | | | doc/CMakeLists.txt had a wrong condition to check whether PANDOC_TOOL was found. Signed-off-by: Saya Sugiura <ssugiura@jp.adit-jv.com>
* doc: Move all man pages to markdown files (#102)v2.18.1Christoph Lipka2019-02-121-4/+31
| | | | All manpages have been removed, because they will be autogenerated from markdown files using pandoc.
* Add dlt-sortbytimestamp utility plus documentation (#73)eBardieCT2018-09-251-11/+18
| | | | | | | | | | | | | | | * Add dlt-sortbytimestamp utility plus documentation Add a commandline utility to sort a DLT file by timestamp. By default a DLT file's messages are in the order they were received by the logger. This is not ideal for tracing problems on systems with multi-threaded programmes running on multi-core CPUs since message reception order will not always (or even often) correspond to message creation order. The documentation deals with how to handle the problem case of DLT files containing messages from multiple boot cycles.
* Tell cmake to use README.md instead of README to fix doc generation (#16)pierreN2017-05-221-1/+1
| | | Signed-off-by: Pierre N <pierreN@users.noreply.github.com>
* doc: Documenatation updateChristoph Lipka2016-10-241-4/+11
| | | | Signed-off-by: Christoph Lipka <clipka@jp.adit-jv.com>
* Updated man pages and READMEsLutz Helwing2016-02-241-14/+25
| | | | | | | | | | | - Updated INSTALL - Updated README - Fixed ReleaseNotes.txt for asciidoc generation - Added manual for core dump handler - Updated all man pages Change-Id: I7154c14f92b3f7f6ca05c721d154a8e1aa7df1bf Signed-off-by: Lutz Helwing <lutz_helwing@mentor.com>
* Added documentation, bugfixes, improvementsSven Hassler2015-12-161-0/+1
| | | | | | | - Added dlt-kpi.txt as asciidoc document. - Fixed a bug where extremely high CPU- and IO-Wait times were calculated. - CPU- and IO-Wait time are now being divided by CPU count.
* Removed all trailing whitespacesLutz Helwing2015-07-211-37/+37
| | | | Signed-off-by: Alexander Wenzel <Alexander.AW.Wenzel@bmw.de>
* Fixed license headers and copyright doxygen commentsLutz Helwing2015-06-171-1/+1
| | | | Signed-off-by: Alexander Wenzel <Alexander.AW.Wenzel@bmw.de>
* Updated license headers to latest GENIVI license policy. Fixed further LRT ↵Lutz Helwing2015-06-171-11/+13
| | | | | | Scan findings. Renamed and cleanup further files. Signed-off-by: Alexander Wenzel <Alexander.AW.Wenzel@bmw.de>
* Add HowTo Debug documentationLassi Marttala2013-07-191-0/+1
| | | | Signed-off-by: Alexander Wenzel <Alexander.AW.Wenzel@bmw.de>
* Converted extended network trace document to asciidoc.Lassi Marttala2012-11-261-7/+2
| | | | Signed-off-by: Alexander Wenzel <Alexander.AW.Wenzel@bmw.de>
* Moved manual generation from batch file into cmake.Alexander Wenzel2012-11-261-2/+32
| | | | Signed-off-by: Alexander Wenzel <Alexander.AW.Wenzel@bmw.de>
* Updated dlt-filetransfer documentation to asciidocChristian Muck2012-11-261-7/+1
| | | | Signed-off-by: Christian Muck <christian.muck@bmw.de>
* [GDLT-120]: Improved Network trace. Rewrite to POSIX queue.Lassi Marttala2012-11-261-0/+7
| | | | | | | | | | | | | | | | | | | | | | | | | This is a squash of multiple commits. The original commit messages follow. [GDLT-120]: Segmented network trace: Correct error condition checks. [GDLT-120]: Add documentation for extended network trace [GDLT-120]: Add dlt_queue. Linked list based dynamic queue. [GDLT-120]: Recode to using queue for segmented messages [GDLT-120]: Improved thread start handling. Add error handling. Remove libm from linkage. [GDLT-120]: Avoid sending an extraneous empty segment, when size is aligned [GDLT-120]: More expansive return values from dlt_user_log_send_log [GDLT-120]: Change default behaviour of dlt_user_trace_network to truncated, instead of discard. [GDLT-120]: Convert to POSIX queue. Signed-off-by: Alexander Wenzel <Alexander.AW.Wenzel@bmw.de>
* Corrected email of Alexander WenzelChristian Muck2012-03-271-1/+1
| | | | Signed-off-by: Christian Muck <christian.muck@bmw.de>
* GDLT-38, Update licenses in CMakeListsLassi Marttala2012-03-261-32/+10
|
* [GENDLT-20] Fixed bug to use old cmake version for copy fileChristian Muck2012-03-211-1/+1
| | | | Signed-off-by: Christian Muck <christian.muck@bmw.de>
* Update of dlt-daemon.1, Readme.txt, Install.txt, CMAKELists and gitignoreChristian Muck2012-03-051-6/+7
|
* [GDLT-53] Remove dummy libraryLassi Marttala2012-03-021-2/+0
|
* [GDLT-53] Lassi Marttala2012-03-021-49/+65
| | | | | Improve the man page generation. Upgrade the versions within man files. Move man page generation into build/doc dir
* Prettyfied the syntax to be more consistent.Lassi Marttala2012-03-011-9/+8
|
* First test using cmakelistLassi Marttala2012-03-011-1/+52
|
* Update project structureChristian Muck2012-02-131-23/+15
|
* Clean up of doc generationChristian Muck2012-01-161-26/+20
|
* Init of dlt daemonChristian Muck2011-04-111-0/+67