 ebbec2fdc6
			
		
	
	ebbec2fdc6
	
	
	
		
			
			Fixes: ba8aeb02ea ("mdadm: Fix compile with musl 1.1.23")
Signed-off-by: Hauke Mehrtens <hauke@hauke-m.de>
		
	
		
			
				
	
	
		
			71 lines
		
	
	
		
			1.8 KiB
		
	
	
	
		
			Makefile
		
	
	
	
	
	
			
		
		
	
	
			71 lines
		
	
	
		
			1.8 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:=4.1
 | |
| PKG_RELEASE:=2
 | |
| 
 | |
| PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.xz
 | |
| PKG_SOURCE_URL:=@KERNEL/linux/utils/raid/mdadm
 | |
| PKG_HASH:=ab7688842908d3583a704d491956f31324c3a5fc9f6a04653cb75d19f1934f4a
 | |
| 
 | |
| PKG_MAINTAINER:=Felix Fietkau <nbd@nbd.name>
 | |
| PKG_CPE_ID:=cpe:/a:mdadm_project:mdadm
 | |
| 
 | |
| 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:=https://www.kernel.org/pub/linux/utils/raid/mdadm/
 | |
|   DEPENDS:=+libpthread +kmod-md-mod +kmod-md-raid0 +kmod-md-raid10 +kmod-md-raid1
 | |
| endef
 | |
| 
 | |
| define Package/mdadm/description
 | |
|  A tool for managing Linux Software RAID arrays.
 | |
|  RAID 0, 1 and 10 support included.
 | |
|  If you need RAID 4,5 or 6 functionality please
 | |
|  install kmod-md-raid456 .
 | |
| endef
 | |
| 
 | |
| define Package/mdadm/conffiles
 | |
| /etc/config/mdadm
 | |
| endef
 | |
| 
 | |
| TARGET_CFLAGS += \
 | |
| 	-ffunction-sections -fdata-sections \
 | |
| 	-DHAVE_STDINT_H -DNO_COROSYNC -DNO_DLM -DUSE_PTHREADS \
 | |
| 	-DCONFFILE='\"/var/etc/mdadm.conf\"' \
 | |
| 	-DMAP_DIR='\"/var/run/mdadm\"' \
 | |
| 	-DMDMON_DIR='\"/var/run/mdadm\"' \
 | |
| 	-DFAILED_SLOTS_DIR='\"/var/run/mdadm/failed-slots\"'
 | |
| 
 | |
| TARGET_LDFLAGS += -Wl,--gc-sections
 | |
| 
 | |
| MAKE_VARS += CHECK_RUN_DIR=0
 | |
| 
 | |
| define Build/Compile
 | |
| 	$(call Build/Compile/Default,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_CONF) ./files/mdadm.config $(1)/etc/config/mdadm
 | |
| endef
 | |
| 
 | |
| $(eval $(call BuildPackage,mdadm))
 |