Commit 4b47ab6c authored by Christophe Vu-Brugier's avatar Christophe Vu-Brugier Committed by Thomas Petazzoni
Browse files

drbd-utils: new package



DRBD utilities to manage the DRBD kernel module.

[Thomas: remove largefile dependency.]

Signed-off-by: default avatarChristophe Vu-Brugier <cvubrugier@fastmail.fm>
Signed-off-by: default avatarThomas Petazzoni <thomas.petazzoni@free-electrons.com>
parent 48a71734
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
@@ -1114,6 +1114,7 @@ endif
	source "package/dhcpcd/Config.in"
	source "package/dhcpdump/Config.in"
	source "package/dnsmasq/Config.in"
	source "package/drbd-utils/Config.in"
	source "package/dropbear/Config.in"
	source "package/ebtables/Config.in"
	source "package/ejabberd/Config.in"
+7 −0
Original line number Diff line number Diff line
config BR2_PACKAGE_DRBD_UTILS
	bool "drbd-utils"
	depends on BR2_USE_MMU # needs fork()
	help
	  DRBD utilities to manage the DRBD kernel module.

	  http://oss.linbit.com/drbd/
+34 −0
Original line number Diff line number Diff line
################################################################################
#
# drbd-utils
#
################################################################################

DRBD_UTILS_VERSION = 8.9.1
DRBD_UTILS_SITE = http://oss.linbit.com/drbd/
DRBD_UTILS_LICENSE = GPLv2+
DRBD_UTILS_LICENSE_FILES = COPYING

DRBD_UTILS_CONF_OPTS = --with-distro=generic

ifeq ($(BR2_INIT_SYSTEMD),y)
DRBD_UTILS_CONF_OPTS += --with-initscripttype=systemd
DRDB_UTILS_DEPENDENCIES += systemd
else
DRBD_UTILS_CONF_OPTS += --with-initscripttype=sysv
endif

ifeq ($(BR2_PACKAGE_HAS_UDEV),y)
DRBD_UTILS_CONF_OPTS += --with-udev=yes
DRDB_UTILS_DEPENDENCIES += udev
else
DRBD_UTILS_CONF_OPTS += --with-udev=no
endif

# Do not build the documentation because it requires docbook
define DRBD_UTILS_DISABLE_DOCS
	$(SED) 's/user scripts documentation/user scripts/' $(@D)/Makefile.in
endef
DRBD_UTILS_POST_PATCH_HOOKS += DRBD_UTILS_DISABLE_DOCS

$(eval $(autotools-package))