All of lore.kernel.org
 help / color / mirror / Atom feed
* [Buildroot] [PATCH 1/1] package/nfs-utils: set CONFIG_NFSD
@ 2021-11-19 16:49 Fabrice Fontaine
  2021-11-19 17:05 ` Giulio Benetti
                   ` (3 more replies)
  0 siblings, 4 replies; 5+ messages in thread
From: Fabrice Fontaine @ 2021-11-19 16:49 UTC (permalink / raw)
  To: buildroot; +Cc: Giulio Benetti, Fabrice Fontaine

Fixes:
 - https://bugs.buildroot.org/show_bug.cgi?id=14346

Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>
---
 package/nfs-utils/nfs-utils.mk | 4 ++++
 1 file changed, 4 insertions(+)

diff --git a/package/nfs-utils/nfs-utils.mk b/package/nfs-utils/nfs-utils.mk
index 763dd57ace..07b44b5a93 100644
--- a/package/nfs-utils/nfs-utils.mk
+++ b/package/nfs-utils/nfs-utils.mk
@@ -90,6 +90,10 @@ NFS_UTILS_CONF_OPTS += --without-systemd
 endif
 
 ifeq ($(BR2_PACKAGE_NFS_UTILS_RPC_NFSD),y)
+define NFS_UTILS_LINUX_CONFIG_FIXUPS
+	$(call KCONFIG_ENABLE_OPT,CONFIG_NFSD)
+endef
+
 define NFS_UTILS_INSTALL_INIT_SYSV
 	$(INSTALL) -D -m 0755 package/nfs-utils/S60nfs \
 		$(TARGET_DIR)/etc/init.d/S60nfs
-- 
2.33.0

_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot

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

* Re: [Buildroot] [PATCH 1/1] package/nfs-utils: set CONFIG_NFSD
  2021-11-19 16:49 [Buildroot] [PATCH 1/1] package/nfs-utils: set CONFIG_NFSD Fabrice Fontaine
@ 2021-11-19 17:05 ` Giulio Benetti
  2021-11-19 21:52 ` Petr Vorel
                   ` (2 subsequent siblings)
  3 siblings, 0 replies; 5+ messages in thread
From: Giulio Benetti @ 2021-11-19 17:05 UTC (permalink / raw)
  To: Fabrice Fontaine, buildroot

Hi Fabrice,

thank you for the patch.

On 19/11/21 17:49, Fabrice Fontaine wrote:
> Fixes:
>   - https://bugs.buildroot.org/show_bug.cgi?id=14346
> 
> Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>

Reviewed-by: Giulio Benetti <giulio.benetti@benettiengineering.com>

Kind regards
-- 
Giulio Benetti
Benetti Engineering sas

> ---
>   package/nfs-utils/nfs-utils.mk | 4 ++++
>   1 file changed, 4 insertions(+)
> 
> diff --git a/package/nfs-utils/nfs-utils.mk b/package/nfs-utils/nfs-utils.mk
> index 763dd57ace..07b44b5a93 100644
> --- a/package/nfs-utils/nfs-utils.mk
> +++ b/package/nfs-utils/nfs-utils.mk
> @@ -90,6 +90,10 @@ NFS_UTILS_CONF_OPTS += --without-systemd
>   endif
>   
>   ifeq ($(BR2_PACKAGE_NFS_UTILS_RPC_NFSD),y)
> +define NFS_UTILS_LINUX_CONFIG_FIXUPS
> +	$(call KCONFIG_ENABLE_OPT,CONFIG_NFSD)
> +endef
> +
>   define NFS_UTILS_INSTALL_INIT_SYSV
>   	$(INSTALL) -D -m 0755 package/nfs-utils/S60nfs \
>   		$(TARGET_DIR)/etc/init.d/S60nfs
> 

_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot

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

* Re: [Buildroot] [PATCH 1/1] package/nfs-utils: set CONFIG_NFSD
  2021-11-19 16:49 [Buildroot] [PATCH 1/1] package/nfs-utils: set CONFIG_NFSD Fabrice Fontaine
  2021-11-19 17:05 ` Giulio Benetti
@ 2021-11-19 21:52 ` Petr Vorel
  2021-11-21 21:30 ` Thomas Petazzoni
  2021-12-10 22:04 ` Peter Korsgaard
  3 siblings, 0 replies; 5+ messages in thread
From: Petr Vorel @ 2021-11-19 21:52 UTC (permalink / raw)
  To: Fabrice Fontaine; +Cc: Giulio Benetti, buildroot

Hi Fabrice,

> Fixes:
>  - https://bugs.buildroot.org/show_bug.cgi?id=14346

> Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>
> ---
>  package/nfs-utils/nfs-utils.mk | 4 ++++
>  1 file changed, 4 insertions(+)

> diff --git a/package/nfs-utils/nfs-utils.mk b/package/nfs-utils/nfs-utils.mk
> index 763dd57ace..07b44b5a93 100644
> --- a/package/nfs-utils/nfs-utils.mk
> +++ b/package/nfs-utils/nfs-utils.mk
> @@ -90,6 +90,10 @@ NFS_UTILS_CONF_OPTS += --without-systemd
>  endif

>  ifeq ($(BR2_PACKAGE_NFS_UTILS_RPC_NFSD),y)
> +define NFS_UTILS_LINUX_CONFIG_FIXUPS
> +	$(call KCONFIG_ENABLE_OPT,CONFIG_NFSD)
> +endef

Reviewed-by: Petr Vorel <petr.vorel@gmail.com>

Thanks a lot!

Kind regards,
Petr

> +
>  define NFS_UTILS_INSTALL_INIT_SYSV
>  	$(INSTALL) -D -m 0755 package/nfs-utils/S60nfs \
>  		$(TARGET_DIR)/etc/init.d/S60nfs
_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot

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

* Re: [Buildroot] [PATCH 1/1] package/nfs-utils: set CONFIG_NFSD
  2021-11-19 16:49 [Buildroot] [PATCH 1/1] package/nfs-utils: set CONFIG_NFSD Fabrice Fontaine
  2021-11-19 17:05 ` Giulio Benetti
  2021-11-19 21:52 ` Petr Vorel
@ 2021-11-21 21:30 ` Thomas Petazzoni
  2021-12-10 22:04 ` Peter Korsgaard
  3 siblings, 0 replies; 5+ messages in thread
From: Thomas Petazzoni @ 2021-11-21 21:30 UTC (permalink / raw)
  To: Fabrice Fontaine; +Cc: Giulio Benetti, buildroot

On Fri, 19 Nov 2021 17:49:26 +0100
Fabrice Fontaine <fontaine.fabrice@gmail.com> wrote:

> Fixes:
>  - https://bugs.buildroot.org/show_bug.cgi?id=14346
> 
> Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>
> ---
>  package/nfs-utils/nfs-utils.mk | 4 ++++
>  1 file changed, 4 insertions(+)

Applied to master, thanks.

Thomas
-- 
Thomas Petazzoni, CTO, Bootlin
Embedded Linux and Kernel engineering
https://bootlin.com
_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot

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

* Re: [Buildroot] [PATCH 1/1] package/nfs-utils: set CONFIG_NFSD
  2021-11-19 16:49 [Buildroot] [PATCH 1/1] package/nfs-utils: set CONFIG_NFSD Fabrice Fontaine
                   ` (2 preceding siblings ...)
  2021-11-21 21:30 ` Thomas Petazzoni
@ 2021-12-10 22:04 ` Peter Korsgaard
  3 siblings, 0 replies; 5+ messages in thread
From: Peter Korsgaard @ 2021-12-10 22:04 UTC (permalink / raw)
  To: Fabrice Fontaine; +Cc: Giulio Benetti, buildroot

>>>>> "Fabrice" == Fabrice Fontaine <fontaine.fabrice@gmail.com> writes:

 > Fixes:
 >  - https://bugs.buildroot.org/show_bug.cgi?id=14346

 > Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>

Committed to 2021.02.x and 2021.08.x, thanks.

-- 
Bye, Peter Korsgaard
_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot

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

end of thread, other threads:[~2021-12-10 22:04 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-11-19 16:49 [Buildroot] [PATCH 1/1] package/nfs-utils: set CONFIG_NFSD Fabrice Fontaine
2021-11-19 17:05 ` Giulio Benetti
2021-11-19 21:52 ` Petr Vorel
2021-11-21 21:30 ` Thomas Petazzoni
2021-12-10 22:04 ` Peter Korsgaard

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.