diff options
-rw-r--r-- | package/nfs-utils/Config.in | 4 | ||||
-rw-r--r-- | package/portmap/Config.in | 4 |
2 files changed, 8 insertions, 0 deletions
diff --git a/package/nfs-utils/Config.in b/package/nfs-utils/Config.in index ffe865d1f..04be8c336 100644 --- a/package/nfs-utils/Config.in +++ b/package/nfs-utils/Config.in @@ -1,5 +1,6 @@ config BR2_PACKAGE_NFS_UTILS bool "nfs-utils" + depends on BR2_INET_RPC default n help The NFS Linux kernel server. @@ -8,6 +9,9 @@ config BR2_PACKAGE_NFS_UTILS http://sourceforge.net/projects/nfs +comment "nfs-utils requires a toolchain with 'Enable RPC' selected" + depends on !BR2_INET_RPC + menu "NFS utilities selection" depends BR2_PACKAGE_NFS_UTILS diff --git a/package/portmap/Config.in b/package/portmap/Config.in index 00f950c3a..0a6ec7a68 100644 --- a/package/portmap/Config.in +++ b/package/portmap/Config.in @@ -1,7 +1,11 @@ config BR2_PACKAGE_PORTMAP bool "portmap" default n + depends on BR2_INET_RPC help The standard portmapper for RPC services. ftp://ftp.porcupine.org/pub/security/index.html + +comment "portmap requires a toolchain with 'Enable RPC' selected" + depends on !BR2_INET_RPC |