From: Peter Korsgaard Date: Mon, 22 Jun 2009 13:25:33 +0000 (+0200) Subject: busybox: autodetect nfs mount support based on BR2_INET_RPC setting X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=ab5208886e80ddaeb67af18797b6116e1ec4436f;p=buildroot.git busybox: autodetect nfs mount support based on BR2_INET_RPC setting Override nfs mount support based on BR2_INET_RPC setting, so BR will DTRT. This way you will automatically get NFS support in busybox if available in the toolchain, and the build won't break if the defconfig enables it but the user has it disabled in the toolchain. Signed-off-by: Peter Korsgaard --- diff --git a/package/busybox/busybox.mk b/package/busybox/busybox.mk index fcec41a472..a5978da2ce 100644 --- a/package/busybox/busybox.mk +++ b/package/busybox/busybox.mk @@ -72,6 +72,11 @@ ifeq ($(BR2_INET_IPV6),y) else $(SED) "s/^.*CONFIG_FEATURE_IPV6.*/CONFIG_FEATURE_IPV6=n/;" $(BUSYBOX_DIR)/.config endif +ifeq ($(BR2_INET_RPC),y) + $(SED) "s/^.*CONFIG_FEATURE_MOUNT_NFS.*/CONFIG_FEATURE_MOUNT_NFS=y/;" $(BUSYBOX_DIR)/.config +else + $(SED) "s/^.*CONFIG_FEATURE_MOUNT_NFS.*/CONFIG_FEATURE_MOUNT_NFS=n/;" $(BUSYBOX_DIR)/.config +endif ifeq ($(BR2_PACKAGE_BUSYBOX_SKELETON),y) # force mdev on $(SED) "s/^.*CONFIG_MDEV.*/CONFIG_MDEV=y/" $(BUSYBOX_DIR)/.config