linux-mtd.lists.infradead.org archive mirror
 help / color / mirror / Atom feed
* [PATCH v2 0/2] ubifs: Fixes around ubifs-authentication.rst
@ 2020-09-05 20:43 Jonathan Neuschäfer
  2020-09-05 20:43 ` [PATCH v2 1/2] MAINTAINERS: Add ubifs-authentication.rst to UBIFS Jonathan Neuschäfer
                   ` (2 more replies)
  0 siblings, 3 replies; 4+ messages in thread
From: Jonathan Neuschäfer @ 2020-09-05 20:43 UTC (permalink / raw)
  To: linux-mtd
  Cc: Rob Herring, Miklos Szeredi, Jonathan Corbet,
	Mauro Carvalho Chehab, Richard Weinberger, Jonathan Cameron,
	linux-doc, Jonathan Neuschäfer, David S. Miller,
	Greg Kroah-Hartman, Tobin C. Harding, Stefan Hajnoczi,
	Jaskaran Singh, Daniel W. S. Almeida, linux-kernel

In these two patches, I add ubifs-authentication.rst to MAINTAINERS and
add a heading to prevent the chapter headings from being listed in
filesystems/index.html.

v2:
- Rebased on 5.9-rc3
- Removed patches that have become obsolete

v1:
- https://lore.kernel.org/lkml/20200214170833.25803-1-j.neuschaefer@gmx.net/

Jonathan Neuschäfer (2):
  MAINTAINERS: Add ubifs-authentication.rst to UBIFS
  docs: ubifs-authentication: Add a top-level heading

 Documentation/filesystems/ubifs-authentication.rst | 6 ++++--
 MAINTAINERS                                        | 1 +
 2 files changed, 5 insertions(+), 2 deletions(-)

--
2.28.0


______________________________________________________
Linux MTD discussion mailing list
http://lists.infradead.org/mailman/listinfo/linux-mtd/

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

* [PATCH v2 1/2] MAINTAINERS: Add ubifs-authentication.rst to UBIFS
  2020-09-05 20:43 [PATCH v2 0/2] ubifs: Fixes around ubifs-authentication.rst Jonathan Neuschäfer
@ 2020-09-05 20:43 ` Jonathan Neuschäfer
  2020-09-05 20:43 ` [PATCH v2 2/2] docs: ubifs-authentication: Add a top-level heading Jonathan Neuschäfer
  2020-09-09 17:53 ` [PATCH v2 0/2] ubifs: Fixes around ubifs-authentication.rst Jonathan Corbet
  2 siblings, 0 replies; 4+ messages in thread
From: Jonathan Neuschäfer @ 2020-09-05 20:43 UTC (permalink / raw)
  To: linux-mtd
  Cc: Rob Herring, Miklos Szeredi, Jonathan Corbet,
	Mauro Carvalho Chehab, Richard Weinberger, Jonathan Cameron,
	linux-doc, Jonathan Neuschäfer, David S. Miller,
	Greg Kroah-Hartman, Tobin C. Harding, Stefan Hajnoczi,
	Jaskaran Singh, Daniel W. S. Almeida, linux-kernel

Signed-off-by: Jonathan Neuschäfer <j.neuschaefer@gmx.net>
---
 MAINTAINERS | 1 +
 1 file changed, 1 insertion(+)

diff --git a/MAINTAINERS b/MAINTAINERS
index e4647c84c987e..b85671736108e 100644
--- a/MAINTAINERS
+++ b/MAINTAINERS
@@ -17699,6 +17699,7 @@ S:	Supported
 W:	http://www.linux-mtd.infradead.org/doc/ubifs.html
 T:	git git://git.kernel.org/pub/scm/linux/kernel/git/rw/ubifs.git next
 T:	git git://git.kernel.org/pub/scm/linux/kernel/git/rw/ubifs.git fixes
+F:	Documentation/filesystems/ubifs-authentication.rst
 F:	Documentation/filesystems/ubifs.rst
 F:	fs/ubifs/

--
2.28.0


______________________________________________________
Linux MTD discussion mailing list
http://lists.infradead.org/mailman/listinfo/linux-mtd/

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

* [PATCH v2 2/2] docs: ubifs-authentication: Add a top-level heading
  2020-09-05 20:43 [PATCH v2 0/2] ubifs: Fixes around ubifs-authentication.rst Jonathan Neuschäfer
  2020-09-05 20:43 ` [PATCH v2 1/2] MAINTAINERS: Add ubifs-authentication.rst to UBIFS Jonathan Neuschäfer
@ 2020-09-05 20:43 ` Jonathan Neuschäfer
  2020-09-09 17:53 ` [PATCH v2 0/2] ubifs: Fixes around ubifs-authentication.rst Jonathan Corbet
  2 siblings, 0 replies; 4+ messages in thread
From: Jonathan Neuschäfer @ 2020-09-05 20:43 UTC (permalink / raw)
  To: linux-mtd
  Cc: Rob Herring, Miklos Szeredi, Jonathan Corbet,
	Mauro Carvalho Chehab, Richard Weinberger, Jonathan Cameron,
	linux-doc, Jonathan Neuschäfer, David S. Miller,
	Greg Kroah-Hartman, Tobin C. Harding, Stefan Hajnoczi,
	Jaskaran Singh, Daniel W. S. Almeida, linux-kernel

This prevents the chapter headings from showing up in the table of
contents in filesystems/index.html.

Note that I didn't pick "UBIFS Authentication" as the document title,
because there is a chapter of the same name, and Sphinx complains about
multiple headings with the same name:

  /.../Documentation/filesystems/ubifs-authentication.rst:207:
  WARNING: duplicate label filesystems/ubifs-authentication:ubifs
  authentication, other instance in
  /.../Documentation/filesystems/ubifs-authentication.rst

Remove the :orphan: tag, as the document has been included into the
toctree.

Signed-off-by: Jonathan Neuschäfer <j.neuschaefer@gmx.net>
---
 Documentation/filesystems/ubifs-authentication.rst | 6 ++++--
 1 file changed, 4 insertions(+), 2 deletions(-)

diff --git a/Documentation/filesystems/ubifs-authentication.rst b/Documentation/filesystems/ubifs-authentication.rst
index 1f39c8cea7029..5210aed2afbc3 100644
--- a/Documentation/filesystems/ubifs-authentication.rst
+++ b/Documentation/filesystems/ubifs-authentication.rst
@@ -1,11 +1,13 @@
 .. SPDX-License-Identifier: GPL-2.0

-:orphan:
-
 .. UBIFS Authentication
 .. sigma star gmbh
 .. 2018

+============================
+UBIFS Authentication Support
+============================
+
 Introduction
 ============

--
2.28.0


______________________________________________________
Linux MTD discussion mailing list
http://lists.infradead.org/mailman/listinfo/linux-mtd/

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

* Re: [PATCH v2 0/2] ubifs: Fixes around ubifs-authentication.rst
  2020-09-05 20:43 [PATCH v2 0/2] ubifs: Fixes around ubifs-authentication.rst Jonathan Neuschäfer
  2020-09-05 20:43 ` [PATCH v2 1/2] MAINTAINERS: Add ubifs-authentication.rst to UBIFS Jonathan Neuschäfer
  2020-09-05 20:43 ` [PATCH v2 2/2] docs: ubifs-authentication: Add a top-level heading Jonathan Neuschäfer
@ 2020-09-09 17:53 ` Jonathan Corbet
  2 siblings, 0 replies; 4+ messages in thread
From: Jonathan Corbet @ 2020-09-09 17:53 UTC (permalink / raw)
  To: Jonathan Neuschäfer
  Cc: Miklos Szeredi, Rob Herring, Mauro Carvalho Chehab,
	Richard Weinberger, Jonathan Cameron, linux-doc,
	Greg Kroah-Hartman, David S. Miller, linux-mtd, Tobin C. Harding,
	Stefan Hajnoczi, Jaskaran Singh, Daniel W. S. Almeida,
	linux-kernel

On Sat,  5 Sep 2020 22:43:24 +0200
Jonathan Neuschäfer <j.neuschaefer@gmx.net> wrote:

> In these two patches, I add ubifs-authentication.rst to MAINTAINERS and
> add a heading to prevent the chapter headings from being listed in
> filesystems/index.html.

I've applied the set, thanks.

jon

______________________________________________________
Linux MTD discussion mailing list
http://lists.infradead.org/mailman/listinfo/linux-mtd/

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

end of thread, other threads:[~2020-09-09 17:54 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-09-05 20:43 [PATCH v2 0/2] ubifs: Fixes around ubifs-authentication.rst Jonathan Neuschäfer
2020-09-05 20:43 ` [PATCH v2 1/2] MAINTAINERS: Add ubifs-authentication.rst to UBIFS Jonathan Neuschäfer
2020-09-05 20:43 ` [PATCH v2 2/2] docs: ubifs-authentication: Add a top-level heading Jonathan Neuschäfer
2020-09-09 17:53 ` [PATCH v2 0/2] ubifs: Fixes around ubifs-authentication.rst Jonathan Corbet

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).