Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > linux.kernel > #1488805
| From | Mauro Carvalho Chehab <mchehab@s-opensource.com> |
|---|---|
| Newsgroups | linux.kernel |
| Subject | [PATCH 00/17] More files converted to ReST format |
| Date | 2016-09-22 13:50 +0200 |
| Message-ID | <skaFP-5LW-1@gated-at.bofh.it> (permalink) |
| Organization | linux.* mail to news gateway |
This series contain conversion of other files that, IMHO, belong to the development-process book or to an user manual book. Patch 1 is actually just a fixup; Patch 2 is actually patch 28/29 from my past series that weren' t applied because it was merging file renames on it; Patch 3 add ReST cross references for the already converted patches; patches 4, 5 and 6 convert README, REPORTING-BUGS and kernel-parameter.txt to be the basis of a Linux Kernel User' s manual; patch 7 add the already converted text files that are meant to be read by Linux developers at the development-process book; patch 8 creates the Linux Kernel User' s manual. The remaining patches convert generic documentation that, IMHO, belongs to either the "user" or "develoment" book. I'll keep working on converting those files, but we have already enough patches to be flushed to linux-doc and LKML :) Mauro Carvalho Chehab (17): Documentation/applying-patches.txt: fix a bad external link Documentation/email-clients.txt: convert it to ReST markup docs-rst: add inter-document cross references REPORTING-BUGS: convert to ReST markup README: convert it to ReST markup Documentation/kernel-parameters.txt: convert to ReST markup docs-rst: add documents to development-process docs-rst: create an user's manual book Documentation/adding-syscalls.txt: convert it to ReST markup Documentation/bad_memory.txt: convert it to ReST markup Documentation/basic_profiling.rst: convert to ReST markup Documentation/binfmt_misc.txt: convert it to ReST markup Documentation/serial-console.txt: convert it to ReST markup Documentation/braille-console: convert it to ReST markup Documentation/BUG-HUNTING: convert to ReST markup CodeOfConflict: add it to the development-process book Documentation/devices.rst: convert it to ReST markup Documentation/BUG-HUNTING | 162 +-- Documentation/CodeOfConflict | 1 + Documentation/SecurityBugs | 12 +- Documentation/SubmitChecklist | 10 +- Documentation/SubmittingDrivers | 7 +- Documentation/SubmittingPatches | 24 +- Documentation/adding-syscalls.txt | 263 ++--- Documentation/applying-patches.txt | 2 +- Documentation/bad_memory.txt | 26 +- Documentation/basic_profiling.txt | 59 +- Documentation/binfmt_misc.txt | 134 ++- Documentation/braille-console.txt | 30 +- Documentation/development-process/Changes.rst | 1 + .../development-process/CodeOfConflict.rst | 1 + Documentation/development-process/CodingStyle.rst | 1 + Documentation/development-process/HOWTO.rst | 1 + .../development-process/ManagementStyle.rst | 1 + .../development-process/SubmitChecklist.rst | 1 + .../development-process/SubmittingDrivers.rst | 1 + .../development-process/SubmittingPatches.rst | 1 + .../development-process/adding-syscalls.rst | 1 + .../development-process/applying-patches.rst | 1 + .../development-process/development-process.rst | 2 + .../development-process/email-clients.rst | 1 + Documentation/development-process/index.rst | 21 + Documentation/development-process/kernel-docs.rst | 1 + .../development-process/stable_api_nonsense.rst | 1 + .../development-process/stable_kernel_rules.rst | 1 + Documentation/devices.txt | 1090 ++++++++++---------- Documentation/email-clients.txt | 208 ++-- Documentation/index.rst | 1 + Documentation/kernel-parameters.txt | 33 +- Documentation/serial-console.txt | 68 +- Documentation/stable_kernel_rules.txt | 7 +- Documentation/user/BUG-HUNTING.rst | 1 + Documentation/user/README.rst | 1 + Documentation/user/REPORTING-BUGS.rst | 1 + Documentation/user/SecurityBugs.rst | 1 + Documentation/user/bad_memory.rst | 1 + Documentation/user/basic_profiling.rst | 1 + Documentation/user/binfmt_misc.rst | 1 + Documentation/user/braile-console.rst | 1 + Documentation/user/devices.rst | 1 + Documentation/user/index.rst | 20 + Documentation/user/kernel-parameters.rst | 1 + Documentation/user/serial-console.rst | 1 + README | 105 +- REPORTING-BUGS | 66 +- 48 files changed, 1297 insertions(+), 1079 deletions(-) create mode 120000 Documentation/development-process/Changes.rst create mode 120000 Documentation/development-process/CodeOfConflict.rst create mode 120000 Documentation/development-process/CodingStyle.rst create mode 120000 Documentation/development-process/HOWTO.rst create mode 120000 Documentation/development-process/ManagementStyle.rst create mode 120000 Documentation/development-process/SubmitChecklist.rst create mode 120000 Documentation/development-process/SubmittingDrivers.rst create mode 120000 Documentation/development-process/SubmittingPatches.rst create mode 120000 Documentation/development-process/adding-syscalls.rst create mode 120000 Documentation/development-process/applying-patches.rst create mode 120000 Documentation/development-process/email-clients.rst create mode 120000 Documentation/development-process/kernel-docs.rst create mode 120000 Documentation/development-process/stable_api_nonsense.rst create mode 120000 Documentation/development-process/stable_kernel_rules.rst create mode 120000 Documentation/user/BUG-HUNTING.rst create mode 120000 Documentation/user/README.rst create mode 120000 Documentation/user/REPORTING-BUGS.rst create mode 120000 Documentation/user/SecurityBugs.rst create mode 120000 Documentation/user/bad_memory.rst create mode 120000 Documentation/user/basic_profiling.rst create mode 120000 Documentation/user/binfmt_misc.rst create mode 120000 Documentation/user/braile-console.rst create mode 120000 Documentation/user/devices.rst create mode 100644 Documentation/user/index.rst create mode 120000 Documentation/user/kernel-parameters.rst create mode 120000 Documentation/user/serial-console.rst -- 2.7.4
Back to linux.kernel | Previous | Next — Next in thread | Find similar | Unroll thread
[PATCH 00/17] More files converted to ReST format Mauro Carvalho Chehab <mchehab@s-opensource.com> - 2016-09-22 13:50 +0200 [PATCH 01/17] Documentation/applying-patches.txt: fix a bad external link Mauro Carvalho Chehab <mchehab@s-opensource.com> - 2016-09-22 13:50 +0200 [PATCH 13/17] Documentation/serial-console.txt: convert it to ReST markup Mauro Carvalho Chehab <mchehab@s-opensource.com> - 2016-09-22 13:50 +0200 [PATCH 09/17] Documentation/adding-syscalls.txt: convert it to ReST markup Mauro Carvalho Chehab <mchehab@s-opensource.com> - 2016-09-22 13:50 +0200 [PATCH 02/17] Documentation/email-clients.txt: convert it to ReST markup Mauro Carvalho Chehab <mchehab@s-opensource.com> - 2016-09-22 14:00 +0200 [PATCH 08/17] docs-rst: create an user's manual book Mauro Carvalho Chehab <mchehab@s-opensource.com> - 2016-09-22 14:00 +0200 [PATCH 07/17] docs-rst: add documents to development-process Mauro Carvalho Chehab <mchehab@s-opensource.com> - 2016-09-22 14:00 +0200 [PATCH 15/17] Documentation/BUG-HUNTING: convert to ReST markup Mauro Carvalho Chehab <mchehab@s-opensource.com> - 2016-09-22 14:00 +0200 [PATCH 11/17] Documentation/basic_profiling.rst: convert to ReST markup Mauro Carvalho Chehab <mchehab@s-opensource.com> - 2016-09-22 14:00 +0200 [PATCH 03/17] docs-rst: add inter-document cross references Mauro Carvalho Chehab <mchehab@s-opensource.com> - 2016-09-22 14:00 +0200 [PATCH 06/17] Documentation/kernel-parameters.txt: convert to ReST markup Mauro Carvalho Chehab <mchehab@s-opensource.com> - 2016-09-22 14:00 +0200 [PATCH 14/17] Documentation/braille-console: convert it to ReST markup Mauro Carvalho Chehab <mchehab@s-opensource.com> - 2016-09-22 14:00 +0200 [PATCH 04/17] REPORTING-BUGS: convert to ReST markup Mauro Carvalho Chehab <mchehab@s-opensource.com> - 2016-09-22 14:00 +0200 [PATCH 12/17] Documentation/binfmt_misc.txt: convert it to ReST markup Mauro Carvalho Chehab <mchehab@s-opensource.com> - 2016-09-22 14:00 +0200 [PATCH 10/17] Documentation/bad_memory.txt: convert it to ReST markup Mauro Carvalho Chehab <mchehab@s-opensource.com> - 2016-09-22 14:00 +0200 [PATCH 05/17] README: convert it to ReST markup Mauro Carvalho Chehab <mchehab@s-opensource.com> - 2016-09-22 14:00 +0200
csiph-web