From: Mauro Carvalho Chehab <mchehab@s-opensource.com>
To: Linux Doc Mailing List <linux-doc@vger.kernel.org>,
Linux Kernel Mailing List <linux-kernel@vger.kernel.org>
Cc: Mauro Carvalho Chehab <mchehab@s-opensource.com>,
Mauro Carvalho Chehab <mchehab@infradead.org>
Subject: [PATCH 00/17] More files converted to ReST format
Date: Wed, 21 Sep 2016 16:09:27 -0300 [thread overview]
Message-ID: <cover.1474484060.git.mchehab@s-opensource.com> (raw)
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
next reply other threads:[~2016-09-22 11:49 UTC|newest]
Thread overview: 20+ messages / expand[flat|nested] mbox.gz Atom feed top
2016-09-21 19:09 Mauro Carvalho Chehab [this message]
2016-09-21 19:09 ` [PATCH 01/17] Documentation/applying-patches.txt: fix a bad external link Mauro Carvalho Chehab
2016-09-21 19:09 ` [PATCH 02/17] Documentation/email-clients.txt: convert it to ReST markup Mauro Carvalho Chehab
2016-09-21 19:09 ` [PATCH 03/17] docs-rst: add inter-document cross references Mauro Carvalho Chehab
2016-09-21 19:09 ` [PATCH 04/17] REPORTING-BUGS: convert to ReST markup Mauro Carvalho Chehab
2016-09-21 19:09 ` [PATCH 05/17] README: convert it " Mauro Carvalho Chehab
2016-10-04 19:42 ` Diego Viola
2016-10-04 20:19 ` Diego Viola
2016-09-21 19:09 ` [PATCH 06/17] Documentation/kernel-parameters.txt: convert " Mauro Carvalho Chehab
2016-09-21 19:09 ` [PATCH 07/17] docs-rst: add documents to development-process Mauro Carvalho Chehab
2016-09-21 19:09 ` [PATCH 08/17] docs-rst: create an user's manual book Mauro Carvalho Chehab
2016-09-21 19:09 ` [PATCH 09/17] Documentation/adding-syscalls.txt: convert it to ReST markup Mauro Carvalho Chehab
2016-09-21 19:09 ` [PATCH 10/17] Documentation/bad_memory.txt: " Mauro Carvalho Chehab
2016-09-21 19:09 ` [PATCH 11/17] Documentation/basic_profiling.rst: convert " Mauro Carvalho Chehab
2016-09-21 19:09 ` [PATCH 12/17] Documentation/binfmt_misc.txt: convert it " Mauro Carvalho Chehab
2016-09-21 19:09 ` [PATCH 13/17] Documentation/serial-console.txt: " Mauro Carvalho Chehab
2016-09-21 19:09 ` [PATCH 14/17] Documentation/braille-console: " Mauro Carvalho Chehab
2016-09-21 19:09 ` [PATCH 15/17] Documentation/BUG-HUNTING: convert " Mauro Carvalho Chehab
2016-09-21 19:09 ` [PATCH 16/17] CodeOfConflict: add it to the development-process book Mauro Carvalho Chehab
2016-09-21 19:09 ` [PATCH 17/17] Documentation/devices.rst: convert it to ReST markup Mauro Carvalho Chehab
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=cover.1474484060.git.mchehab@s-opensource.com \
--to=mchehab@s-opensource.com \
--cc=linux-doc@vger.kernel.org \
--cc=linux-kernel@vger.kernel.org \
--cc=mchehab@infradead.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).