3f07af337c
- update iw to 3.14 - remove some patches that are obsolete - 200-reduce_size.patch has new coalesce removed from Makefile matching prev. ver - refresh patches This increases the size of the binary by 6.7%: 87801 4400 320 92521 16969 iw-3.10/iw 93995 4424 324 98743 181b7 iw-3.14/iw Signed-off-by: Dirk Neukirchen <dirkneukirchen@web.de> SVN-Revision: 39486
57 lines
1.4 KiB
Makefile
57 lines
1.4 KiB
Makefile
#
|
|
# Copyright (C) 2007-2011 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:=iw
|
|
PKG_VERSION:=3.14
|
|
PKG_RELEASE:=1
|
|
|
|
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.xz
|
|
PKG_SOURCE_URL:=https://www.kernel.org/pub/software/network/iw
|
|
PKG_MD5SUM:=66e41053f6fc0781b683b5b688442de6
|
|
|
|
PKG_MAINTAINER:=Felix Fietkau <nbd@openwrt.org>
|
|
|
|
include $(INCLUDE_DIR)/package.mk
|
|
|
|
define Package/iw
|
|
SECTION:=net
|
|
CATEGORY:=Network
|
|
TITLE:=cfg80211 interface configuration utility
|
|
URL:=http://wireless.kernel.org/en/users/Documentation/iw
|
|
DEPENDS:= +libnl-tiny @(!TARGET_avr32||BROKEN)
|
|
endef
|
|
|
|
define Build/Configure
|
|
echo "const char iw_version[] = \"$(PKG_VERSION)\";" > $(PKG_BUILD_DIR)/version.c
|
|
rm -f $(PKG_BUILD_DIR)/version.sh
|
|
touch $(PKG_BUILD_DIR)/version.sh
|
|
chmod +x $(PKG_BUILD_DIR)/version.sh
|
|
endef
|
|
|
|
TARGET_CPPFLAGS:= \
|
|
-I$(STAGING_DIR)/usr/include/libnl-tiny \
|
|
$(TARGET_CPPFLAGS) \
|
|
-DCONFIG_LIBNL20 \
|
|
-D_GNU_SOURCE
|
|
|
|
MAKE_FLAGS += \
|
|
CFLAGS="$(TARGET_CPPFLAGS) $(TARGET_CFLAGS) -ffunction-sections -fdata-sections" \
|
|
LDFLAGS="$(TARGET_LDFLAGS) -Wl,--gc-sections" \
|
|
NL1FOUND="" NL2FOUND=Y \
|
|
NLLIBNAME="libnl-tiny" \
|
|
LIBS="-lm -lnl-tiny" \
|
|
V=1
|
|
|
|
define Package/iw/install
|
|
$(INSTALL_DIR) $(1)/usr/sbin
|
|
$(INSTALL_BIN) $(PKG_BUILD_DIR)/iw $(1)/usr/sbin/
|
|
endef
|
|
|
|
$(eval $(call BuildPackage,iw))
|