All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH v3 0/7] Convert the remaining text files to ReST
@ 2020-06-23 13:31 ` Mauro Carvalho Chehab
  0 siblings, 0 replies; 14+ messages in thread
From: Mauro Carvalho Chehab @ 2020-06-23 13:31 UTC (permalink / raw)
  To: Linux Doc Mailing List
  Cc: Alexandre Belloni, Stephen Kitt, David Airlie,
	Sebastian Andrzej Siewior, Pragat Pandya, dri-devel,
	Masahiro Yamada, Harry Wei, Krzysztof Kozlowski,
	Joel Fernandes (Google), Alex Shi, Will Deacon, Jason Gunthorpe,
	Alexandre Ghiti, Jonathan Corbet, Mauro Carvalho Chehab,
	Aneesh Kumar K.V, Masahiro Yamada, Matthew Wilcox (Oracle),
	Daniel Jordan, Peter Zijlstra, Andy Shevchenko, Sami Tolvanen,
	Frank A. Cancio Bello, Harald Seiler, Ricardo Cañuelo,
	Eric W. Biederman, devicetree, Kees Cook, Arnd Bergmann,
	Bartlomiej Zolnierkiewicz, Jonathan Neuschäfer,
	Steven Rostedt (VMware), Rob Herring, Nitin Gupta,
	Thomas Gleixner, Peter Collingbourne, Vlastimil Babka,
	Mike Rapoport, Mathieu Poirier, linux-mm, Stephen Boyd,
	linux-kernel, Patrick Bellasi, Phong Tran, Masami Hiramatsu,
	Thomas Zimmermann, Johannes Weiner, Andrew Morton, Mike Leach

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

^ permalink raw reply	[flat|nested] 14+ messages in thread

end of thread, other threads:[~2020-06-28  8:40 UTC | newest]

Thread overview: 14+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2020-06-23 13:31 [PATCH v3 0/7] Convert the remaining text files to ReST Mauro Carvalho Chehab
2020-06-23 13:31 ` 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

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.