84d471a0b1
Fixes (part of):
http://autobuild.buildroot.net/results/5659e1c91831921bd9ad6af670258783771b4dc8/
Commit 6b37dda2a9
(package/iputils: create ping6 symlink), added a
ping6 symlink, but used the absolute (build) path to ping as the target,
which is naturally no good at runtime:
ls -l target/bin/ping6
lrwxrwxrwx 1 peko peko 58 Jan 10 08:25 target/bin/ping6 -> /home/peko/source/buildroot/output-iputils/target/bin/ping
Instead use a relative symlink.
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
Reviewed-by: Petr Vorel <petr.vorel@gmail.com>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
117 lines
3.5 KiB
Makefile
117 lines
3.5 KiB
Makefile
################################################################################
|
|
#
|
|
# iputils
|
|
#
|
|
################################################################################
|
|
|
|
# The original upstream was forked to the github repository in 2014 to
|
|
# pull fixes from other distribution and centralize the changes after
|
|
# the upstream seemed to have gone dormant. The fork contains the
|
|
# latest changes including musl support, removing a libsysfs dependency
|
|
# and IPv6 updates.
|
|
# http://www.spinics.net/lists/netdev/msg279881.html
|
|
|
|
IPUTILS_VERSION = 20190709
|
|
IPUTILS_SITE = $(call github,iputils,iputils,s$(IPUTILS_VERSION))
|
|
IPUTILS_LICENSE = GPL-2.0+, BSD-3-Clause
|
|
IPUTILS_LICENSE_FILES = LICENSE Documentation/LICENSE.BSD3 Documentation/LICENSE.GPL2
|
|
IPUTILS_DEPENDENCIES = $(TARGET_NLS_DEPENDENCIES)
|
|
|
|
ifeq ($(BR2_PACKAGE_LIBCAP),y)
|
|
IPUTILS_CONF_OPTS += -DUSE_CAP=true
|
|
IPUTILS_DEPENDENCIES += libcap
|
|
else
|
|
IPUTILS_CONF_OPTS += -DUSE_CAP=false
|
|
endif
|
|
|
|
ifeq ($(BR2_PACKAGE_LIBIDN2),y)
|
|
IPUTILS_CONF_OPTS += -DUSE_IDN=true
|
|
IPUTILS_DEPENDENCIES += libidn2
|
|
else
|
|
IPUTILS_CONF_OPTS += -DUSE_IDN=false
|
|
endif
|
|
|
|
ifeq ($(BR2_PACKAGE_NETTLE),y)
|
|
IPUTILS_CONF_OPTS += -DUSE_CRYPTO=nettle
|
|
IPUTILS_DEPENDENCIES += nettle
|
|
else ifeq ($(BR2_PACKAGE_LIBGCRYPT),y)
|
|
IPUTILS_CONF_OPTS += -DUSE_CRYPTO=gcrypt
|
|
IPUTILS_DEPENDENCIES += libgcrypt
|
|
else ifeq ($(BR2_PACKAGE_OPENSSL),y)
|
|
IPUTILS_CONF_OPTS += -DUSE_CRYPTO=openssl
|
|
IPUTILS_DEPENDENCIES += openssl
|
|
else ifeq ($(BR2_PACKAGE_LINUX_HEADERS),y)
|
|
IPUTILS_CONF_OPTS += -DUSE_CRYPTO=kernel
|
|
IPUTILS_DEPENDENCIES += linux-headers
|
|
else
|
|
IPUTILS_CONF_OPTS += -DUSE_CRYPTO=none
|
|
# BUILD_NINFOD=true and USE_CRYPTO=none cannot be combined
|
|
IPUTILS_NINFOD = n
|
|
endif
|
|
|
|
ifeq ($(BR2_PACKAGE_SYSTEMD),y)
|
|
IPUTILS_DEPENDENCIES += systemd
|
|
endif
|
|
|
|
# ninfod requires <pthread.h>
|
|
ifneq ($(BR2_TOOLCHAIN_HAS_THREADS),y)
|
|
IPUTILS_NINFOD = n
|
|
endif
|
|
|
|
ifeq ($(IPUTILS_NINFOD),n)
|
|
IPUTILS_CONF_OPTS += -DBUILD_NINFOD=false
|
|
else
|
|
IPUTILS_CONF_OPTS += -DBUILD_NINFOD=true
|
|
endif
|
|
|
|
ifeq ($(BR2_SYSTEM_ENABLE_NLS),y)
|
|
IPUTILS_CONF_OPTS += -DUSE_GETTEXT=true
|
|
else
|
|
IPUTILS_CONF_OPTS += -DUSE_GETTEXT=false
|
|
endif
|
|
|
|
IPUTILS_CONF_OPTS += -DBUILD_TRACEROUTE6=true
|
|
|
|
# XSL Stylesheets for DocBook 5 not packaged for buildroot
|
|
IPUTILS_CONF_OPTS += -DBUILD_MANS=false -DBUILD_HTML_MANS=false
|
|
|
|
# move iputils binaries to the same location as where Busybox installs
|
|
# the corresponding applets, so that we have a single version of the
|
|
# tools (from iputils)
|
|
define IPUTILS_MOVE_BINARIES
|
|
mv $(TARGET_DIR)/usr/bin/arping $(TARGET_DIR)/usr/sbin/arping
|
|
$(if $(BR2_ROOTFS_MERGED_USR),,\
|
|
mv $(TARGET_DIR)/usr/bin/ping $(TARGET_DIR)/bin/ping)
|
|
mv $(TARGET_DIR)/usr/bin/tftpd $(TARGET_DIR)/usr/sbin/tftpd
|
|
endef
|
|
IPUTILS_POST_INSTALL_TARGET_HOOKS += IPUTILS_MOVE_BINARIES
|
|
|
|
# upstream requires distros to create symlink
|
|
define IPUTILS_CREATE_PING6_SYMLINK
|
|
ln -sf ping $(TARGET_DIR)/bin/ping6
|
|
endef
|
|
IPUTILS_POST_INSTALL_TARGET_HOOKS += IPUTILS_CREATE_PING6_SYMLINK
|
|
|
|
# handle permissions ourselves
|
|
IPUTILS_CONF_OPTS += -DNO_SETCAP_OR_SUID=true
|
|
ifeq ($(BR2_ROOTFS_DEVICE_TABLE_SUPPORTS_EXTENDED_ATTRIBUTES),y)
|
|
define IPUTILS_PERMISSIONS
|
|
/usr/sbin/arping f 755 0 0 - - - - -
|
|
/usr/bin/clockdiff f 755 0 0 - - - - -
|
|
|xattr cap_net_raw+p
|
|
/bin/ping f 755 0 0 - - - - -
|
|
|xattr cap_net_raw+p
|
|
/usr/bin/traceroute6 f 755 0 0 - - - - -
|
|
|xattr cap_net_raw+p
|
|
endef
|
|
else
|
|
define IPUTILS_PERMISSIONS
|
|
/usr/sbin/arping f 755 0 0 - - - - -
|
|
/usr/bin/clockdiff f 4755 0 0 - - - - -
|
|
/bin/ping f 4755 0 0 - - - - -
|
|
/usr/bin/traceroute6 f 4755 0 0 - - - - -
|
|
endef
|
|
endif
|
|
|
|
$(eval $(meson-package))
|