Buildroot Archive on lore.kernel.org
 help / color / mirror / Atom feed
* [Buildroot] [PATCH 1/1] linux: add server options for NFSD
@ 2015-07-13 23:13 Ryan Barnett
  2015-07-13 23:22 ` Arnout Vandecappelle
  0 siblings, 1 reply; 3+ messages in thread
From: Ryan Barnett @ 2015-07-13 23:13 UTC (permalink / raw)
  To: buildroot

When nfs-utils packages is selected, automatically enable the kernel
options for NFSD. This will allow for an NFS server to work by only
adding /etc/exports to the filesystem.

Signed-off-by: Ryan Barnett <ryan.barnett@rockwellcollins.com>
---

Test with qemu_x86_defconfig

Signed-off-by: Ryan Barnett <ryan.barnett@rockwellcollins.com>
---
 linux/linux.mk | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/linux/linux.mk b/linux/linux.mk
index b602a04..ef876c4 100644
--- a/linux/linux.mk
+++ b/linux/linux.mk
@@ -229,6 +229,9 @@ define LINUX_KCONFIG_FIXUP_CMDS
 	$(if $(BR2_PACKAGE_XTABLES_ADDONS),
 		$(call KCONFIG_ENABLE_OPT,CONFIG_NF_CONNTRACK,$(@D)/.config)
 		$(call KCONFIG_ENABLE_OPT,CONFIG_NF_CONNTRACK_MARK,$(@D)/.config))
+	$(if $(BR2_PACKAGE_NFS_UTILS),
+		$(call KCONFIG_ENABLE_OPT,CONFIG_NFSD,$(@D)/.config)
+		$(call KCONFIG_ENABLE_OPT,CONFIG_NFSD_V4,$(@D)/.config))
 	$(if $(BR2_LINUX_KERNEL_APPENDED_DTB),
 		$(call KCONFIG_ENABLE_OPT,CONFIG_ARM_APPENDED_DTB,$(@D)/.config))
 endef
-- 
1.9.1

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

* [Buildroot] [PATCH 1/1] linux: add server options for NFSD
  2015-07-13 23:13 [Buildroot] [PATCH 1/1] linux: add server options for NFSD Ryan Barnett
@ 2015-07-13 23:22 ` Arnout Vandecappelle
  2015-07-13 23:30   ` Ryan Barnett
  0 siblings, 1 reply; 3+ messages in thread
From: Arnout Vandecappelle @ 2015-07-13 23:22 UTC (permalink / raw)
  To: buildroot

On 07/14/15 01:13, Ryan Barnett wrote:
> When nfs-utils packages is selected, automatically enable the kernel
> options for NFSD. This will allow for an NFS server to work by only
> adding /etc/exports to the filesystem.
> 
> Signed-off-by: Ryan Barnett <ryan.barnett@rockwellcollins.com>
> ---
> 
> Test with qemu_x86_defconfig
> 
> Signed-off-by: Ryan Barnett <ryan.barnett@rockwellcollins.com>
> ---
>  linux/linux.mk | 3 +++
>  1 file changed, 3 insertions(+)
> 
> diff --git a/linux/linux.mk b/linux/linux.mk
> index b602a04..ef876c4 100644
> --- a/linux/linux.mk
> +++ b/linux/linux.mk
> @@ -229,6 +229,9 @@ define LINUX_KCONFIG_FIXUP_CMDS
>  	$(if $(BR2_PACKAGE_XTABLES_ADDONS),
>  		$(call KCONFIG_ENABLE_OPT,CONFIG_NF_CONNTRACK,$(@D)/.config)
>  		$(call KCONFIG_ENABLE_OPT,CONFIG_NF_CONNTRACK_MARK,$(@D)/.config))
> +	$(if $(BR2_PACKAGE_NFS_UTILS),
> +		$(call KCONFIG_ENABLE_OPT,CONFIG_NFSD,$(@D)/.config)
> +		$(call KCONFIG_ENABLE_OPT,CONFIG_NFSD_V4,$(@D)/.config))

 Since v4 is currently disabled in nfs-utils, this isn't useful at the moment,
right?

 Regards,
 Arnout

>  	$(if $(BR2_LINUX_KERNEL_APPENDED_DTB),
>  		$(call KCONFIG_ENABLE_OPT,CONFIG_ARM_APPENDED_DTB,$(@D)/.config))
>  endef
> 


-- 
Arnout Vandecappelle                          arnout at mind be
Senior Embedded Software Architect            +32-16-286500
Essensium/Mind                                http://www.mind.be
G.Geenslaan 9, 3001 Leuven, Belgium           BE 872 984 063 RPR Leuven
LinkedIn profile: http://www.linkedin.com/in/arnoutvandecappelle
GPG fingerprint:  7493 020B C7E3 8618 8DEC 222C 82EB F404 F9AC 0DDF

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

* [Buildroot] [PATCH 1/1] linux: add server options for NFSD
  2015-07-13 23:22 ` Arnout Vandecappelle
@ 2015-07-13 23:30   ` Ryan Barnett
  0 siblings, 0 replies; 3+ messages in thread
From: Ryan Barnett @ 2015-07-13 23:30 UTC (permalink / raw)
  To: buildroot

Arnout,

On Mon, Jul 13, 2015 at 6:22 PM, Arnout Vandecappelle <arnout@mind.be> wrote:
> On 07/14/15 01:13, Ryan Barnett wrote:
>> When nfs-utils packages is selected, automatically enable the kernel
>> options for NFSD. This will allow for an NFS server to work by only
>> adding /etc/exports to the filesystem.
>>
>> Signed-off-by: Ryan Barnett <ryan.barnett@rockwellcollins.com>
>> ---
>>
>> Test with qemu_x86_defconfig
>>
>> Signed-off-by: Ryan Barnett <ryan.barnett@rockwellcollins.com>
>> ---
>>  linux/linux.mk | 3 +++
>>  1 file changed, 3 insertions(+)
>>
>> diff --git a/linux/linux.mk b/linux/linux.mk
>> index b602a04..ef876c4 100644
>> --- a/linux/linux.mk
>> +++ b/linux/linux.mk
>> @@ -229,6 +229,9 @@ define LINUX_KCONFIG_FIXUP_CMDS
>>       $(if $(BR2_PACKAGE_XTABLES_ADDONS),
>>               $(call KCONFIG_ENABLE_OPT,CONFIG_NF_CONNTRACK,$(@D)/.config)
>>               $(call KCONFIG_ENABLE_OPT,CONFIG_NF_CONNTRACK_MARK,$(@D)/.config))
>> +     $(if $(BR2_PACKAGE_NFS_UTILS),
>> +             $(call KCONFIG_ENABLE_OPT,CONFIG_NFSD,$(@D)/.config)
>> +             $(call KCONFIG_ENABLE_OPT,CONFIG_NFSD_V4,$(@D)/.config))
>
>  Since v4 is currently disabled in nfs-utils, this isn't useful at the moment,
> right?

Hmm - good catch I just assumed that it had the support enabled. I
will send an update to just support CONFIG_NFSD.

Thanks,
-Ryan

-- 
Ryan Barnett / Sr Software Engineer
Airborne Information Systems / Security Systems and Software
MS 131-100, C Ave NE, Cedar Rapids, IA, 52498, USA
ryan.barnett at rockwellcollins.com
www.rockwellcollins.com

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

end of thread, other threads:[~2015-07-13 23:30 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2015-07-13 23:13 [Buildroot] [PATCH 1/1] linux: add server options for NFSD Ryan Barnett
2015-07-13 23:22 ` Arnout Vandecappelle
2015-07-13 23:30   ` Ryan Barnett

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox