public inbox for linux-man@vger.kernel.org
 help / color / mirror / Atom feed
From: Bagas Sanjaya <bagasdotme@gmail.com>
To: Seamus de Mora <seamusdemora@gmail.com>,
	Namjae Jeon <linkinjeon@kernel.org>
Cc: Linux Manual Pages <linux-man@vger.kernel.org>,
	Linux Filesystems Development <linux-fsdevel@vger.kernel.org>,
	Alejandro Colomar <alx@kernel.org>,
	Sungjong Seo <sj1557.seo@samsung.com>
Subject: Re: Add sub-topic on 'exFAT' in man mount
Date: Tue, 5 Dec 2023 16:03:39 +0700	[thread overview]
Message-ID: <ZW7nawirNIAAm_vL@archie.me> (raw)
In-Reply-To: <CAJ8C1XNThwLi-kxwkLfmecc0FETNNMdHKqWkBDYw4uSZdheuRA@mail.gmail.com>

[-- Attachment #1: Type: text/plain, Size: 3038 bytes --]

On Tue, Dec 05, 2023 at 01:49:42AM -0600, Seamus de Mora wrote:
> On Mon, Nov 27, 2023 at 4:43 PM Seamus de Mora <seamusdemora@gmail.com> wrote:
> >
> > On Sun, Nov 26, 2023 at 5:59 PM Namjae Jeon <linkinjeon@kernel.org> wrote:
> > >
> > > 2023-11-21 15:55 GMT+09:00, Bagas Sanjaya <bagasdotme@gmail.com>:
> > > > On Mon, Nov 20, 2023 at 04:55:18PM -0600, Seamus de Mora wrote:
> > > >> I'd like to volunteer to add some information to the mount manual.
> > > >>
> > > >> I'm told that exFAT was added to the kernel about 4 years ago, but
> > > >> last I checked, there was nothing about it in man mount.  I feel this
> > > >> could be addressed best by adding a sub-topic on exFAT under the topic
> > > >> `FILESYSTEM-SPECIFIC MOUNT OPTIONS`.
> > > >>
> > > >> If my application is of interest, please let me know what steps I need
> > > >> to take - or how to approach this task.
> > > >>
> > > >
> > > > I'm adding from Alejandro's reply.
> > > >
> > > > You can start reading the source in fs/exfat in linux.git tree [1].
> > > > Then you can write the documentation for exfat in Documentation/exfat.rst
> > > > (currently doesn't exist yet), at the same time of your manpage
> > > > contribution.
> > > >
> > > > Cc'ing exfat maintainers for better treatment.
> > > Thanks Bagas for forwarding this to us!
> > >
> > > Hi Seamus,
> > >
> > > Some of mount options are same with fatfs's ones. You can refer the
> > > descriptions of fatfs
> > > documentation(Documentation/filesystems/vfat.rst).
> > > If you have any questions about other options or documentation for
> > > exfat, please give an email me.
> > >
> > > Thanks!
> > > >
> > > > Thanks.
> > > >
> > > > [1]:
> > > > https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git/tree/fs/exfat
> >
> > Thanks for the offer Namjae; I'm sure I'll take you up on that when I
> > get ready to actually produce something. For now, I am reading and
> > trying to get myself up to speed to tackle this. So far, the going has
> > been a bit slow as I have a couple of commitments I need to finish.
> 
> I've read a bit about the mechanics & markup for creating/editing man
> pages. Now all I need is something useful to say :)
> 
> In that regard, I **guess** the best place to look for the details I
> need is in the source code. Without access to the author or
> maintainers, I don't see how else to get at the details needed for a
> decent piece of documentation. I think that is what Bagas (?)
> suggested, but how/where do I find "fs/exfat in linux.git tree" ??

That's simple. First, you need to clone Linus's tree:

```
$ git clone https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git linux-kernel
$ cd linux-kernel/
```

You can now browse exfat sources in fs/exfat.

To get maintainers list that you should Cc: when submitting patches, do
from cloned repo:

```
$ scripts/get_maintainer.pl fs/exfat/
```

Thanks.

-- 
An old man doll... just what I always wanted! - Clara

[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 228 bytes --]

      reply	other threads:[~2023-12-05  9:03 UTC|newest]

Thread overview: 15+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2023-11-20 22:55 Add sub-topic on 'exFAT' in man mount Seamus de Mora
2023-11-20 23:33 ` Alejandro Colomar
2023-11-20 23:44   ` Seamus de Mora
2023-11-21  6:48     ` Bagas Sanjaya
2023-11-21 10:08       ` Alejandro Colomar
2023-11-21 11:41         ` Bagas Sanjaya
2023-11-21 12:51           ` Alejandro Colomar
2023-11-21 13:57             ` Bagas Sanjaya
2023-11-21 13:55         ` G. Branden Robinson
2023-11-21 16:41       ` Seamus de Mora
2023-11-21  6:55 ` Bagas Sanjaya
2023-11-26 23:59   ` Namjae Jeon
2023-11-27 22:43     ` Seamus de Mora
2023-12-05  7:49       ` Seamus de Mora
2023-12-05  9:03         ` Bagas Sanjaya [this message]

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=ZW7nawirNIAAm_vL@archie.me \
    --to=bagasdotme@gmail.com \
    --cc=alx@kernel.org \
    --cc=linkinjeon@kernel.org \
    --cc=linux-fsdevel@vger.kernel.org \
    --cc=linux-man@vger.kernel.org \
    --cc=seamusdemora@gmail.com \
    --cc=sj1557.seo@samsung.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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox