From 2c314a37eb39ad742b7fac56acc53452bb1ae83d Mon Sep 17 00:00:00 2001 From: Sagaert Johan Date: Sun, 15 Jun 2014 15:05:16 +0200 Subject: [PATCH] portmap: prevent selecting the package when rpcbind is selected portmap and rpcbind must not be selected at the same time. Users should use rpcbind in favor of the deprecated portmap. Signed-off-by: Sagaert Johan Signed-off-by: Thomas Petazzoni --- package/portmap/Config.in | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/package/portmap/Config.in b/package/portmap/Config.in index fa7eaf1e0e..d960690d7b 100644 --- a/package/portmap/Config.in +++ b/package/portmap/Config.in @@ -1,6 +1,10 @@ config BR2_PACKAGE_PORTMAP bool "portmap" depends on BR2_TOOLCHAIN_HAS_NATIVE_RPC + # portmap and rpcbind provide the same feature, so they are + # mutually exclusive. rpcbind is the newer, preferred + # implementation. + depends on !BR2_PACKAGE_RPCBIND help The standard portmapper for RPC services. -- 2.30.2