From: Mauro Carvalho Chehab <mchehab+huawei@kernel.org>
To: Linux Doc Mailing List <linux-doc@vger.kernel.org>
Cc: "Alexandre Belloni" <alexandre.belloni@bootlin.com>,
"Stephen Kitt" <steve@sk2.org>, "David Airlie" <airlied@linux.ie>,
"Sebastian Andrzej Siewior" <bigeasy@linutronix.de>,
"Pragat Pandya" <pragat.pandya@gmail.com>,
dri-devel@lists.freedesktop.org,
"Masahiro Yamada" <yamada.masahiro@socionext.com>,
"Harry Wei" <harryxiyou@gmail.com>,
"Krzysztof Kozlowski" <krzk@kernel.org>,
"Joel Fernandes (Google)" <joel@joelfernandes.org>,
"Alex Shi" <alex.shi@linux.alibaba.com>,
"Will Deacon" <will@kernel.org>, "Jason Gunthorpe" <jgg@ziepe.ca>,
"Alexandre Ghiti" <alex@ghiti.fr>,
"Jonathan Corbet" <corbet@lwn.net>,
"Mauro Carvalho Chehab" <mchehab+huawei@kernel.org>,
"Aneesh Kumar K.V" <aneesh.kumar@linux.ibm.com>,
"Masahiro Yamada" <masahiroy@kernel.org>,
"Matthew Wilcox (Oracle)" <willy@infradead.org>,
"Daniel Jordan" <daniel.m.jordan@oracle.com>,
"Peter Zijlstra" <peterz@infradead.org>,
"Andy Shevchenko" <andy.shevchenko@gmail.com>,
"Sami Tolvanen" <samitolvanen@google.com>,
"Frank A. Cancio Bello" <frank@generalsoftwareinc.com>,
"Harald Seiler" <hws@denx.de>,
"Ricardo Cañuelo" <ricardo.canuelo@collabora.com>,
"Eric W. Biederman" <ebiederm@xmission.com>,
devicetree@vger.kernel.org, "Kees Cook" <keescook@chromium.org>,
"Arnd Bergmann" <arnd@arndb.de>,
"Bartlomiej Zolnierkiewicz" <b.zolnierkie@samsung.com>,
"Jonathan Neuschäfer" <j.neuschaefer@gmx.net>,
"Steven Rostedt (VMware)" <rostedt@goodmis.org>,
"Rob Herring" <robh+dt@kernel.org>,
"Nitin Gupta" <nigupta@nvidia.com>,
"Thomas Gleixner" <tglx@linutronix.de>,
"Peter Collingbourne" <pcc@google.com>,
"Vlastimil Babka" <vbabka@suse.cz>,
"Mike Rapoport" <rppt@linux.ibm.com>,
"Mathieu Poirier" <mathieu.poirier@linaro.org>,
linux-mm@kvack.org, "Stephen Boyd" <sboyd@kernel.org>,
linux-kernel@vger.kernel.org,
"Patrick Bellasi" <patrick.bellasi@arm.com>,
"Phong Tran" <tranmanphong@gmail.com>,
"Masami Hiramatsu" <mhiramat@kernel.org>,
"Thomas Zimmermann" <tzimmermann@suse.de>,
"Johannes Weiner" <hannes@cmpxchg.org>,
"Andrew Morton" <akpm@linux-foundation.org>,
"Mike Leach" <mike.leach@linaro.org>
Subject: [PATCH v3 0/7] Convert the remaining text files to ReST
Date: Tue, 23 Jun 2020 15:31:33 +0200 [thread overview]
Message-ID: <cover.1592918949.git.mchehab+huawei@kernel.org> (raw)
The main goal of this series is to finish the ReST conversion. After this
series, we have just those files still in plain old format:
- Documentation/RCU/RTFP.txt
- Documentation/atomic_bitops.txt
- Documentation/memory-barriers.txt
- Documentation/atomic_t.txt
- Documentation/filesystems/dax.txt
- Documentation/filesystems/path-lookup.txt
- Documentation/virt/kvm/devices/README
PS.: I'm using a script to remove false-positives and ignore non-converted
translated files.
---
- v3: removed SPDX patches, because upstream discussion about GFDL is not
finished yet. So, for now, use the old way to specify dual-licensed GPL and GFDL
files.
I have already a tree ready for submission once upstream pushes this feat
on SPDX specs.
Mauro Carvalho Chehab (7):
docs: dt: convert booting-without-of.txt to ReST format
docs: trace: ring-buffer-design.txt: convert to ReST format
docs: move nommu-mmap.txt to admin-guide and rename to ReST
docs: move mailbox.txt to driver-api and rename it
docs: move other kAPI documents to core-api
docs: Add remaining Documentation/*.txt at staging/index.rst
docs: staging: use small font for literal includes
Documentation/admin-guide/mm/index.rst | 1 +
.../mm/nommu-mmap.rst} | 0
Documentation/admin-guide/sysctl/vm.rst | 2 +-
Documentation/arm/booting.rst | 2 +-
.../bus-virt-phys-mapping.rst} | 0
Documentation/core-api/index.rst | 3 +
.../this_cpu_ops.rst} | 0
.../unaligned-memory-access.rst | 0
...-without-of.txt => booting-without-of.rst} | 298 ++++---
Documentation/devicetree/index.rst | 1 +
Documentation/driver-api/index.rst | 1 +
.../{mailbox.txt => driver-api/mailbox.rst} | 0
Documentation/gpu/drm-mm.rst | 2 +-
Documentation/staging/index.rst | 24 +
Documentation/trace/index.rst | 1 +
...ffer-design.txt => ring-buffer-design.rst} | 802 ++++++++++--------
Documentation/translations/zh_CN/arm/Booting | 2 +-
arch/Kconfig | 2 +-
init/Kconfig | 2 +-
mm/Kconfig | 2 +-
mm/nommu.c | 2 +-
21 files changed, 631 insertions(+), 516 deletions(-)
rename Documentation/{nommu-mmap.txt => admin-guide/mm/nommu-mmap.rst} (100%)
rename Documentation/{bus-virt-phys-mapping.txt => core-api/bus-virt-phys-mapping.rst} (100%)
rename Documentation/{this_cpu_ops.txt => core-api/this_cpu_ops.rst} (100%)
rename Documentation/{process => core-api}/unaligned-memory-access.rst (100%)
rename Documentation/devicetree/{booting-without-of.txt => booting-without-of.rst} (90%)
rename Documentation/{mailbox.txt => driver-api/mailbox.rst} (100%)
rename Documentation/trace/{ring-buffer-design.txt => ring-buffer-design.rst} (55%)
--
2.26.2
_______________________________________________
dri-devel mailing list
dri-devel@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/dri-devel
WARNING: multiple messages have this Message-ID (diff)
From: Mauro Carvalho Chehab <mchehab+huawei@kernel.org>
To: Linux Doc Mailing List <linux-doc@vger.kernel.org>
Cc: "Mauro Carvalho Chehab" <mchehab+huawei@kernel.org>,
linux-kernel@vger.kernel.org, "Jonathan Corbet" <corbet@lwn.net>,
"Vlastimil Babka" <vbabka@suse.cz>,
dri-devel@lists.freedesktop.org,
"Steven Rostedt (VMware)" <rostedt@goodmis.org>,
"Aneesh Kumar K.V" <aneesh.kumar@linux.ibm.com>,
"Arnd Bergmann" <arnd@arndb.de>,
"Alexandre Ghiti" <alex@ghiti.fr>,
"Rob Herring" <robh+dt@kernel.org>,
"Pragat Pandya" <pragat.pandya@gmail.com>,
"Joel Fernandes (Google)" <joel@joelfernandes.org>,
"Mathieu Poirier" <mathieu.poirier@linaro.org>,
"Eric W. Biederman" <ebiederm@xmission.com>,
"Phong Tran" <tranmanphong@gmail.com>,
"Patrick Bellasi" <patrick.bellasi@arm.com>,
"Peter Zijlstra" <peterz@infradead.org>,
"Harald Seiler" <hws@denx.de>, "David Airlie" <airlied@linux.ie>,
"Stephen Kitt" <steve@sk2.org>,
"Ricardo Cañuelo" <ricardo.canuelo@collabora.com>,
"Masami Hiramatsu" <mhiramat@kernel.org>,
"Masahiro Yamada" <yamada.masahiro@socionext.com>,
"Daniel Jordan" <daniel.m.jordan@oracle.com>,
"Alexandre Belloni" <alexandre.belloni@bootlin.com>,
"Nitin Gupta" <nigupta@nvidia.com>,
"Peter Collingbourne" <pcc@google.com>,
"Sebastian Andrzej Siewior" <bigeasy@linutronix.de>,
linux-mm@kvack.org,
"Bartlomiej Zolnierkiewicz" <b.zolnierkie@samsung.com>,
"Frank A. Cancio Bello" <frank@generalsoftwareinc.com>,
"Johannes Weiner" <hannes@cmpxchg.org>,
"Harry Wei" <harryxiyou@gmail.com>,
"Thomas Gleixner" <tglx@linutronix.de>,
"Andrew Morton" <akpm@linux-foundation.org>,
"Stephen Boyd" <sboyd@kernel.org>,
"Mike Leach" <mike.leach@linaro.org>,
"Maxime Ripard" <mripard@kernel.org>,
"Jonathan Neuschäfer" <j.neuschaefer@gmx.net>,
"Alex Shi" <alex.shi@linux.alibaba.com>,
"Matthew Wilcox (Oracle)" <willy@infradead.org>,
"Jason Gunthorpe" <jgg@ziepe.ca>,
"Masahiro Yamada" <masahiroy@kernel.org>,
"Krzysztof Kozlowski" <krzk@kernel.org>,
"Kees Cook" <keescook@chromium.org>,
"Sami Tolvanen" <samitolvanen@google.com>,
"Maarten Lankhorst" <maarten.lankhorst@linux.intel.com>,
"Andy Shevchenko" <andy.shevchenko@gmail.com>,
"Will Deacon" <will@kernel.org>,
"Thomas Zimmermann" <tzimmermann@suse.de>,
devicetree@vger.kernel.org, "Mike Rapoport" <rppt@linux.ibm.com>,
"Daniel Vetter" <daniel@ffwll.ch>
Subject: [PATCH v3 0/7] Convert the remaining text files to ReST
Date: Tue, 23 Jun 2020 15:31:33 +0200 [thread overview]
Message-ID: <cover.1592918949.git.mchehab+huawei@kernel.org> (raw)
The main goal of this series is to finish the ReST conversion. After this
series, we have just those files still in plain old format:
- Documentation/RCU/RTFP.txt
- Documentation/atomic_bitops.txt
- Documentation/memory-barriers.txt
- Documentation/atomic_t.txt
- Documentation/filesystems/dax.txt
- Documentation/filesystems/path-lookup.txt
- Documentation/virt/kvm/devices/README
PS.: I'm using a script to remove false-positives and ignore non-converted
translated files.
---
- v3: removed SPDX patches, because upstream discussion about GFDL is not
finished yet. So, for now, use the old way to specify dual-licensed GPL and GFDL
files.
I have already a tree ready for submission once upstream pushes this feat
on SPDX specs.
Mauro Carvalho Chehab (7):
docs: dt: convert booting-without-of.txt to ReST format
docs: trace: ring-buffer-design.txt: convert to ReST format
docs: move nommu-mmap.txt to admin-guide and rename to ReST
docs: move mailbox.txt to driver-api and rename it
docs: move other kAPI documents to core-api
docs: Add remaining Documentation/*.txt at staging/index.rst
docs: staging: use small font for literal includes
Documentation/admin-guide/mm/index.rst | 1 +
.../mm/nommu-mmap.rst} | 0
Documentation/admin-guide/sysctl/vm.rst | 2 +-
Documentation/arm/booting.rst | 2 +-
.../bus-virt-phys-mapping.rst} | 0
Documentation/core-api/index.rst | 3 +
.../this_cpu_ops.rst} | 0
.../unaligned-memory-access.rst | 0
...-without-of.txt => booting-without-of.rst} | 298 ++++---
Documentation/devicetree/index.rst | 1 +
Documentation/driver-api/index.rst | 1 +
.../{mailbox.txt => driver-api/mailbox.rst} | 0
Documentation/gpu/drm-mm.rst | 2 +-
Documentation/staging/index.rst | 24 +
Documentation/trace/index.rst | 1 +
...ffer-design.txt => ring-buffer-design.rst} | 802 ++++++++++--------
Documentation/translations/zh_CN/arm/Booting | 2 +-
arch/Kconfig | 2 +-
init/Kconfig | 2 +-
mm/Kconfig | 2 +-
mm/nommu.c | 2 +-
21 files changed, 631 insertions(+), 516 deletions(-)
rename Documentation/{nommu-mmap.txt => admin-guide/mm/nommu-mmap.rst} (100%)
rename Documentation/{bus-virt-phys-mapping.txt => core-api/bus-virt-phys-mapping.rst} (100%)
rename Documentation/{this_cpu_ops.txt => core-api/this_cpu_ops.rst} (100%)
rename Documentation/{process => core-api}/unaligned-memory-access.rst (100%)
rename Documentation/devicetree/{booting-without-of.txt => booting-without-of.rst} (90%)
rename Documentation/{mailbox.txt => driver-api/mailbox.rst} (100%)
rename Documentation/trace/{ring-buffer-design.txt => ring-buffer-design.rst} (55%)
--
2.26.2
next reply other threads:[~2020-06-23 13:31 UTC|newest]
Thread overview: 14+ messages / expand[flat|nested] mbox.gz Atom feed top
2020-06-23 13:31 Mauro Carvalho Chehab [this message]
2020-06-23 13:31 ` [PATCH v3 0/7] Convert the remaining text files to ReST Mauro Carvalho Chehab
2020-06-23 13:31 ` [PATCH v3 1/7] docs: dt: convert booting-without-of.txt to ReST format Mauro Carvalho Chehab
2020-06-23 13:31 ` [PATCH v3 2/7] docs: trace: ring-buffer-design.txt: convert " Mauro Carvalho Chehab
2020-06-23 13:31 ` [PATCH v3 3/7] docs: move nommu-mmap.txt to admin-guide and rename to ReST Mauro Carvalho Chehab
2020-06-23 13:31 ` Mauro Carvalho Chehab
2020-06-23 13:31 ` [PATCH v3 4/7] docs: move mailbox.txt to driver-api and rename it Mauro Carvalho Chehab
2020-06-23 13:31 ` [PATCH v3 5/7] docs: move other kAPI documents to core-api Mauro Carvalho Chehab
2020-06-23 13:31 ` [PATCH v3 6/7] docs: Add remaining Documentation/*.txt at staging/index.rst Mauro Carvalho Chehab
2020-06-23 13:31 ` [PATCH v3 7/7] docs: staging: use small font for literal includes Mauro Carvalho Chehab
2020-06-26 17:34 ` [PATCH v3 0/7] Convert the remaining text files to ReST Jonathan Corbet
2020-06-26 17:34 ` Jonathan Corbet
2020-06-28 8:40 ` Mauro Carvalho Chehab
2020-06-28 8:40 ` 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.1592918949.git.mchehab+huawei@kernel.org \
--to=mchehab+huawei@kernel.org \
--cc=airlied@linux.ie \
--cc=akpm@linux-foundation.org \
--cc=alex.shi@linux.alibaba.com \
--cc=alex@ghiti.fr \
--cc=alexandre.belloni@bootlin.com \
--cc=andy.shevchenko@gmail.com \
--cc=aneesh.kumar@linux.ibm.com \
--cc=arnd@arndb.de \
--cc=b.zolnierkie@samsung.com \
--cc=bigeasy@linutronix.de \
--cc=corbet@lwn.net \
--cc=daniel.m.jordan@oracle.com \
--cc=devicetree@vger.kernel.org \
--cc=dri-devel@lists.freedesktop.org \
--cc=ebiederm@xmission.com \
--cc=frank@generalsoftwareinc.com \
--cc=hannes@cmpxchg.org \
--cc=harryxiyou@gmail.com \
--cc=hws@denx.de \
--cc=j.neuschaefer@gmx.net \
--cc=jgg@ziepe.ca \
--cc=joel@joelfernandes.org \
--cc=keescook@chromium.org \
--cc=krzk@kernel.org \
--cc=linux-doc@vger.kernel.org \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-mm@kvack.org \
--cc=masahiroy@kernel.org \
--cc=mathieu.poirier@linaro.org \
--cc=mhiramat@kernel.org \
--cc=mike.leach@linaro.org \
--cc=nigupta@nvidia.com \
--cc=patrick.bellasi@arm.com \
--cc=pcc@google.com \
--cc=peterz@infradead.org \
--cc=pragat.pandya@gmail.com \
--cc=ricardo.canuelo@collabora.com \
--cc=robh+dt@kernel.org \
--cc=rostedt@goodmis.org \
--cc=rppt@linux.ibm.com \
--cc=samitolvanen@google.com \
--cc=sboyd@kernel.org \
--cc=steve@sk2.org \
--cc=tglx@linutronix.de \
--cc=tranmanphong@gmail.com \
--cc=tzimmermann@suse.de \
--cc=vbabka@suse.cz \
--cc=will@kernel.org \
--cc=willy@infradead.org \
--cc=yamada.masahiro@socionext.com \
/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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.