You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
43 lines
964 B
43 lines
964 B
18 years ago
|
#
|
||
|
# Copyright (C) 2006 OpenWrt.org
|
||
|
#
|
||
|
# This is free software, licensed under the GNU General Public License v2.
|
||
|
# See /LICENSE for more information.
|
||
|
#
|
||
|
|
||
|
include $(TOPDIR)/rules.mk
|
||
|
include $(INCLUDE_DIR)/kernel.mk
|
||
|
|
||
|
PKG_NAME:=ifenslave
|
||
|
PKG_RELEASE:=1
|
||
|
|
||
|
include $(INCLUDE_DIR)/package.mk
|
||
|
|
||
|
define Package/ifenslave
|
||
|
SECTION:=net
|
||
|
CATEGORY:=Network
|
||
15 years ago
|
DEPENDS:=+kmod-bonding
|
||
18 years ago
|
TITLE:=A utility to manipulate kernel ethernet bonding devices
|
||
18 years ago
|
VERSION:=$(LINUX_VERSION)-$(PKG_RELEASE)
|
||
18 years ago
|
URL:=http://www.kernel.org
|
||
|
endef
|
||
|
|
||
17 years ago
|
define Package/ifenslave/description
|
||
|
ifenslave is needed to add/remove interfaces to/from ethernet bond devices.
|
||
|
endef
|
||
|
|
||
18 years ago
|
define Build/Prepare
|
||
|
endef
|
||
|
|
||
|
define Build/Compile
|
||
17 years ago
|
$(TARGET_CC) $(TARGET_CFLAGS) -o $(PKG_BUILD_DIR)/ifenslave \
|
||
|
$(LINUX_DIR)/Documentation/networking/ifenslave.c
|
||
18 years ago
|
endef
|
||
|
|
||
|
define Package/ifenslave/install
|
||
18 years ago
|
$(INSTALL_DIR) $(1)/sbin
|
||
17 years ago
|
$(INSTALL_BIN) $(PKG_BUILD_DIR)/ifenslave $(1)/sbin/
|
||
18 years ago
|
endef
|
||
|
|
||
|
$(eval $(call BuildPackage,ifenslave))
|