2013-06-28 11:26:33 +00:00
|
|
|
#
|
|
|
|
# Copyright (C) 2008-2012 OpenWrt.org
|
|
|
|
#
|
|
|
|
# This is free software, licensed under the GNU General Public License v2.
|
|
|
|
# See /LICENSE for more information.
|
|
|
|
#
|
|
|
|
|
|
|
|
include $(TOPDIR)/rules.mk
|
|
|
|
|
|
|
|
PKG_NAME:=mdadm
|
2017-03-24 11:17:24 +00:00
|
|
|
PKG_VERSION:=4.0
|
|
|
|
PKG_RELEASE:=1
|
2013-06-28 11:26:33 +00:00
|
|
|
|
|
|
|
PKG_SOURCE_URL:=@KERNEL/linux/utils/raid/mdadm
|
|
|
|
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.xz
|
2017-03-24 11:17:24 +00:00
|
|
|
PKG_HASH:=1d6ae7f24ced3a0fa7b5613b32f4a589bb4881e3946a5a2c3724056254ada3a9
|
2013-06-28 11:26:33 +00:00
|
|
|
|
2016-06-07 06:58:31 +00:00
|
|
|
PKG_MAINTAINER:=Felix Fietkau <nbd@nbd.name>
|
2013-06-28 11:26:33 +00:00
|
|
|
|
|
|
|
PKG_BUILD_PARALLEL:=1
|
|
|
|
|
|
|
|
include $(INCLUDE_DIR)/package.mk
|
|
|
|
|
|
|
|
define Package/mdadm
|
|
|
|
SECTION:=utils
|
|
|
|
CATEGORY:=Utilities
|
2016-11-03 10:45:45 +00:00
|
|
|
SUBMENU:=Disc
|
2013-06-28 11:26:33 +00:00
|
|
|
TITLE:=A tool for managing Soft RAID under Linux
|
|
|
|
URL:=http://www.kernel.org/pub/linux/utils/raid/mdadm/
|
2017-03-24 11:17:24 +00:00
|
|
|
DEPENDS:=+@KERNEL_DIRECT_IO +libpthread +kmod-md-mod +kmod-md-raid0 +kmod-md-raid10 +kmod-md-raid1
|
2013-06-28 11:26:33 +00:00
|
|
|
endef
|
|
|
|
|
|
|
|
define Package/mdadm/description
|
|
|
|
A tool for managing Linux Software RAID arrays.
|
2017-03-24 11:17:24 +00:00
|
|
|
RAID 0, 1 and 10 support included.
|
|
|
|
If you need RAID 4,5 or 6 functionality please
|
|
|
|
install kmod-md-raid456 .
|
2013-06-28 11:26:33 +00:00
|
|
|
endef
|
|
|
|
|
2015-10-15 10:23:26 +00:00
|
|
|
define Package/mdadm/conffiles
|
|
|
|
/etc/mdadm.conf
|
|
|
|
/etc/config/mdadm
|
|
|
|
endef
|
|
|
|
|
2017-03-24 11:17:24 +00:00
|
|
|
TARGET_CFLAGS += -ffunction-sections -fdata-sections -DNO_COROSYNC -DNO_DLM -DUSE_PTHREADS
|
2013-06-28 11:26:40 +00:00
|
|
|
TARGET_LDFLAGS += -Wl,--gc-sections
|
|
|
|
|
2013-06-28 11:26:33 +00:00
|
|
|
define Build/Compile
|
|
|
|
$(MAKE) -C $(PKG_BUILD_DIR) \
|
|
|
|
CC="$(TARGET_CC)" \
|
|
|
|
CFLAGS="$(TARGET_CFLAGS) -DHAVE_STDINT_H" \
|
|
|
|
LDFLAGS="$(TARGET_LDFLAGS)" \
|
2013-06-28 11:26:44 +00:00
|
|
|
mdadm
|
2013-06-28 11:26:33 +00:00
|
|
|
endef
|
|
|
|
|
|
|
|
define Package/mdadm/install
|
|
|
|
$(INSTALL_DIR) $(1)/sbin
|
|
|
|
$(INSTALL_BIN) $(PKG_BUILD_DIR)/mdadm $(1)/sbin
|
2015-10-15 10:23:26 +00:00
|
|
|
$(INSTALL_DIR) $(1)/etc/init.d
|
|
|
|
$(INSTALL_BIN) ./files/mdadm.init $(1)/etc/init.d/mdadm
|
|
|
|
$(INSTALL_DIR) $(1)/etc/config
|
|
|
|
$(INSTALL_DATA) ./files/mdadm.config $(1)/etc/config/mdadm
|
2013-06-28 11:26:33 +00:00
|
|
|
endef
|
|
|
|
|
|
|
|
$(eval $(call BuildPackage,mdadm))
|