mirror of
https://git.openwrt.org/openwrt/openwrt.git
synced 2026-01-28 03:37:17 +01:00
Some checks are pending
Build all core packages / Build all core packages for selected target (push) Waiting to run
Add 'DEFAULT_VARIANT' to two packages, 'iw' and 'eapol-test', that were missed in the first pass. Refactor 'iw' and 'ethtool' package definitions to be consistent with the pattern used in most other packages. Fixes: https://github.com/openwrt/openwrt/commit/f4fdb996 Fixes: https://github.com/openwrt/openwrt/commit/7a78dc4a Signed-off-by: Eric Fahlgren <ericfahlgren@gmail.com> Link: https://github.com/openwrt/openwrt/pull/21380 Signed-off-by: Robert Marko <robimarko@gmail.com>
80 lines
1.8 KiB
Makefile
80 lines
1.8 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:=6.17
|
|
PKG_RELEASE:=1
|
|
|
|
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.xz
|
|
PKG_SOURCE_URL:=@KERNEL/software/network/iw
|
|
PKG_HASH:=7d182e498289ab39b257da6780d562e415377107f50358ee5b55b8cfe40b1e33
|
|
|
|
PKG_MAINTAINER:=Felix Fietkau <nbd@nbd.name>
|
|
PKG_LICENSE:=GPL-2.0
|
|
PKG_CPE_ID:=cpe:/a:kernel:iw
|
|
|
|
PKG_BUILD_FLAGS:=gc-sections lto
|
|
|
|
include $(INCLUDE_DIR)/package.mk
|
|
|
|
define Package/iw/Default
|
|
SECTION:=net
|
|
CATEGORY:=Network
|
|
TITLE:=cfg80211 interface configuration utility
|
|
URL:=https://wireless.kernel.org/en/latest/en/users/documentation/iw.html
|
|
DEPENDS:= +libnl-tiny
|
|
endef
|
|
|
|
define Package/iw
|
|
$(call Package/iw/Default)
|
|
VARIANT:=tiny
|
|
DEFAULT_VARIANT:=1
|
|
endef
|
|
|
|
define Package/iw-full
|
|
$(call Package/iw/Default)
|
|
TITLE += (full version)
|
|
VARIANT:=full
|
|
PROVIDES:=iw
|
|
endef
|
|
|
|
define Build/Configure
|
|
echo "const char iw_version[] = \"$(PKG_VERSION)\";" > $(PKG_BUILD_DIR)/version.c
|
|
echo "#!/bin/sh" > $(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
|
|
|
|
ifeq ($(BUILD_VARIANT),full)
|
|
TARGET_CPPFLAGS += -DIW_FULL
|
|
MAKE_FLAGS += IW_FULL=1
|
|
endif
|
|
|
|
MAKE_FLAGS += \
|
|
CFLAGS="$(TARGET_CPPFLAGS) $(TARGET_CFLAGS)" \
|
|
LDFLAGS="$(TARGET_LDFLAGS)" \
|
|
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
|
|
|
|
Package/iw-full/install=$(Package/iw/install)
|
|
|
|
$(eval $(call BuildPackage,iw))
|
|
$(eval $(call BuildPackage,iw-full))
|