mail archive of the barebox mailing list
 help / color / mirror / Atom feed
From: Ahmad Fatoum <a.fatoum@pengutronix.de>
To: Jonas Rebmann <jre@pengutronix.de>,
	Sascha Hauer <s.hauer@pengutronix.de>,
	BAREBOX <barebox@lists.infradead.org>
Subject: Re: [PATCH] automount: add nfs section to board automount scripts
Date: Tue, 22 Oct 2024 08:23:43 +0200	[thread overview]
Message-ID: <b1699907-4424-4da5-bcbc-eed660f8d031@pengutronix.de> (raw)
In-Reply-To: <20241021-phytec-nfs-automount-v1-1-20787c288563@pengutronix.de>

Hello Jonas,

Thanks for your patch.

On 21.10.24 17:22, Jonas Rebmann wrote:
> When nfs automount was introduced in b31b7cf7e8b6, board specific

Nitpick: Kernel convention is to format commit hashes as
commit b31b7cf7e8b6 ("defaultenv-2: add automount for nfs").

> automount scripts where not updated

Nitpick: missing full stop.

> 
> ---
> Signed-off-by: Jonas Rebmann <jre@pengutronix.de>

Reviewed-by: Ahmad Fatoum <a.fatoum@pengutronix.de>

Note that this will be cut off by git am, because it's under the ---.

Cheers,
Ahmad

> ---
>  arch/arm/boards/at91sam9m10ihd/env/init/automount                  | 5 ++++-
>  .../boards/efika-mx-smartbook/defaultenv-efikasb/init/automount    | 6 +++++-
>  .../boards/phytec-som-imx6/defaultenv-physom-imx6/init/automount   | 7 ++++++-
>  3 files changed, 15 insertions(+), 3 deletions(-)
> 
> diff --git a/arch/arm/boards/at91sam9m10ihd/env/init/automount b/arch/arm/boards/at91sam9m10ihd/env/init/automount
> index 96ffa7059aa8f0013d88b3a9cf8522f2cfd94e2b..e7bb1e79b1acca59c8f2113cc443c83f63be689c 100644
> --- a/arch/arm/boards/at91sam9m10ihd/env/init/automount
> +++ b/arch/arm/boards/at91sam9m10ihd/env/init/automount
> @@ -5,7 +5,10 @@
>  mkdir -p /mnt/tftp
>  automount /mnt/tftp 'ifup eth0 && mount -t tftp $eth0.serverip /mnt/tftp'
>  
> -# automount nfs server example
> +# automount nfs server's nfsroot
> +
> +mkdir -p /mnt/nfs
> +automount /mnt/nfs 'ifup -a1 && mount -t nfs ${global.net.server}:/home/${global.user}/nfsroot/${global.hostname} /mnt/nfs'
>  
>  # SD card slot, first partition
>  mkdir -p /mnt/mmc
> diff --git a/arch/arm/boards/efika-mx-smartbook/defaultenv-efikasb/init/automount b/arch/arm/boards/efika-mx-smartbook/defaultenv-efikasb/init/automount
> index 71dfd95f2b9646d46809f12c283be3fa135ad410..9a6160231b27c133c8fb03883f44c7be22950d58 100644
> --- a/arch/arm/boards/efika-mx-smartbook/defaultenv-efikasb/init/automount
> +++ b/arch/arm/boards/efika-mx-smartbook/defaultenv-efikasb/init/automount
> @@ -5,7 +5,11 @@
>  mkdir -p /mnt/tftp
>  automount /mnt/tftp 'ifup eth0 && mount -t tftp $eth0.serverip /mnt/tftp'
>  
> -# automount nfs server example
> +# automount nfs server's nfsroot
> +
> +mkdir -p /mnt/nfs
> +automount /mnt/nfs 'ifup -a1 && mount -t nfs ${global.net.server}:/home/${global.user}/nfsroot/${global.hostname} /mnt/nfs'
> +
>  
>  # internal harddisk /boot partition
>  mkdir -p /mnt/internal-hd0.0
> diff --git a/arch/arm/boards/phytec-som-imx6/defaultenv-physom-imx6/init/automount b/arch/arm/boards/phytec-som-imx6/defaultenv-physom-imx6/init/automount
> index fea64d627e97e97ab4d819f532dc2f80da9247a9..16fa87fcb78ba90a1bc94908faf18c5f347e8ecc 100644
> --- a/arch/arm/boards/phytec-som-imx6/defaultenv-physom-imx6/init/automount
> +++ b/arch/arm/boards/phytec-som-imx6/defaultenv-physom-imx6/init/automount
> @@ -1,10 +1,15 @@
>  #!/bin/sh
>  
> -# automount tftp server based on $eth0.serverip
> +# automount tftp server
>  
>  mkdir -p /mnt/tftp
>  automount /mnt/tftp 'ifup eth0 && mount -t tftp $eth0.serverip /mnt/tftp'
>  
> +# automount nfs server's nfsroot
> +
> +mkdir -p /mnt/nfs
> +automount /mnt/nfs 'ifup -a && mount -t nfs ${global.net.server}:/home/${global.user}/nfsroot/${global.hostname} /mnt/nfs'
> +
>  mkdir -p /mnt/mmc
>  automount -d /mnt/mmc 'mmc2.probe=1 && [ -e /dev/mmc2.0 ] && mount /dev/mmc2.0 /mnt/mmc'
>  
> 
> ---
> base-commit: dda64a15ea026c95ccd8bd8a8b70c7e070af1a15
> change-id: 20241021-phytec-nfs-automount-8f1a06171c82
> 
> Best regards,


-- 
Pengutronix e.K.                           |                             |
Steuerwalder Str. 21                       | http://www.pengutronix.de/  |
31137 Hildesheim, Germany                  | Phone: +49-5121-206917-0    |
Amtsgericht Hildesheim, HRA 2686           | Fax:   +49-5121-206917-5555 |



  reply	other threads:[~2024-10-22  6:24 UTC|newest]

Thread overview: 4+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2024-10-21 15:22 Jonas Rebmann
2024-10-22  6:23 ` Ahmad Fatoum [this message]
2024-10-22  8:20   ` Sascha Hauer
2024-10-22  8:19 ` Sascha Hauer

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=b1699907-4424-4da5-bcbc-eed660f8d031@pengutronix.de \
    --to=a.fatoum@pengutronix.de \
    --cc=barebox@lists.infradead.org \
    --cc=jre@pengutronix.de \
    --cc=s.hauer@pengutronix.de \
    /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