813efe57e4
Extend the mdadm package to allow to explicitely configure arrays as well as device list entries. Signed-off-by: Jo-Philipp Wich <jo@mein.io>
62 lines
1.4 KiB
Makefile
62 lines
1.4 KiB
Makefile
#
|
|
# 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
|
|
PKG_VERSION:=3.2.5
|
|
PKG_RELEASE:=2
|
|
|
|
PKG_SOURCE_URL:=@KERNEL/linux/utils/raid/mdadm
|
|
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.xz
|
|
PKG_HASH:=ec1d264e4126309aafe76d76067e8f3fd6649941cff6cb0242d467a1e66a01e0
|
|
|
|
PKG_MAINTAINER:=Felix Fietkau <nbd@nbd.name>
|
|
|
|
PKG_BUILD_PARALLEL:=1
|
|
|
|
include $(INCLUDE_DIR)/package.mk
|
|
|
|
define Package/mdadm
|
|
SECTION:=utils
|
|
CATEGORY:=Utilities
|
|
SUBMENU:=Disc
|
|
TITLE:=A tool for managing Soft RAID under Linux
|
|
URL:=http://www.kernel.org/pub/linux/utils/raid/mdadm/
|
|
DEPENDS:=+@KERNEL_DIRECT_IO
|
|
endef
|
|
|
|
define Package/mdadm/description
|
|
A tool for managing Linux Software RAID arrays.
|
|
endef
|
|
|
|
define Package/mdadm/conffiles
|
|
/etc/mdadm.conf
|
|
/etc/config/mdadm
|
|
endef
|
|
|
|
TARGET_CFLAGS += -ffunction-sections -fdata-sections
|
|
TARGET_LDFLAGS += -Wl,--gc-sections
|
|
|
|
define Build/Compile
|
|
$(MAKE) -C $(PKG_BUILD_DIR) \
|
|
CC="$(TARGET_CC)" \
|
|
CFLAGS="$(TARGET_CFLAGS) -DHAVE_STDINT_H" \
|
|
LDFLAGS="$(TARGET_LDFLAGS)" \
|
|
mdadm
|
|
endef
|
|
|
|
define Package/mdadm/install
|
|
$(INSTALL_DIR) $(1)/sbin
|
|
$(INSTALL_BIN) $(PKG_BUILD_DIR)/mdadm $(1)/sbin
|
|
$(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
|
|
endef
|
|
|
|
$(eval $(call BuildPackage,mdadm))
|