Merge pull request #155 from rsmarples/master
Add dhcpcd-6.4.3, a DHCPv4/IPv4LL/IPv6RS/DHCPv6 quad stack client.
This commit is contained in:
commit
7e8c1d09e6
2 changed files with 87 additions and 0 deletions
63
net/dhcpcd/Makefile
Normal file
63
net/dhcpcd/Makefile
Normal file
|
@ -0,0 +1,63 @@
|
||||||
|
#
|
||||||
|
# Copyright (C) 2014 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:=dhcpcd
|
||||||
|
PKG_VERSION:=6.4.3
|
||||||
|
PKG_RELEASE:=1
|
||||||
|
|
||||||
|
PKG_SOURCE_URL:=ftp://roy.marples.name/pub/dhcpcd \
|
||||||
|
http://roy.marples.name/downloads/dhcpcd
|
||||||
|
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.bz2
|
||||||
|
PKG_MD5SUM:=b22005c131e7108ecf598b6a4ac091eb
|
||||||
|
|
||||||
|
PKG_LICENSE:=BSD-2c
|
||||||
|
PKG_LICENSE_FILES:=
|
||||||
|
|
||||||
|
PKG_MAINTAINER:=Roy Marples <roy@marples.name>
|
||||||
|
|
||||||
|
PKG_BUILD_PARALLEL:=1
|
||||||
|
PKG_INSTALL:=1
|
||||||
|
|
||||||
|
include $(INCLUDE_DIR)/package.mk
|
||||||
|
|
||||||
|
define Package/dhcpcd
|
||||||
|
SECTION:=net
|
||||||
|
CATEGORY:=Network
|
||||||
|
TITLE:=DHCPv4/IPv4LL/IPv6RS/DHCPv6 quad stack client
|
||||||
|
URL:=http://roy.marples.name/projects/dhcpcd
|
||||||
|
endef
|
||||||
|
|
||||||
|
define Package/dhcpcd/description
|
||||||
|
DHCPv4, IPv6RS and DHCPv6 client with IPv4LL support
|
||||||
|
dhcpcd is a one stop network management daemon which includes
|
||||||
|
* RFC compliant DHCPv4 and DHCPv6 clients
|
||||||
|
* DHCPv6 Prefix Delegation support
|
||||||
|
* IPv4LL (aka ZeroConf) support
|
||||||
|
* ARP address conflict resolution
|
||||||
|
* Link carrier detection
|
||||||
|
* Wireless SSID profiles
|
||||||
|
* ARP ping profiles
|
||||||
|
endef
|
||||||
|
|
||||||
|
CONFIGURE_ARGS+= --prefix=/ --sbindir=/sbin \
|
||||||
|
--libexecdir=/lib/dhcpcd --dbdir=/var/dhcpcd
|
||||||
|
|
||||||
|
define Package/dhcpcd/install
|
||||||
|
$(INSTALL_DIR) $(1)/sbin $(1)/etc $(1)/lib/dhcpcd/dhcpcd-hooks
|
||||||
|
$(INSTALL_BIN) $(PKG_INSTALL_DIR)/sbin/dhcpcd $(1)/sbin/
|
||||||
|
$(INSTALL_BIN) $(PKG_INSTALL_DIR)/lib/dhcpcd/dhcpcd-run-hooks \
|
||||||
|
$(1)/lib/dhcpcd/
|
||||||
|
$(INSTALL_DATA) $(PKG_INSTALL_DIR)/lib/dhcpcd/dhcpcd-hooks/* \
|
||||||
|
$(1)/lib/dhcpcd/dhcpcd-hooks/
|
||||||
|
$(INSTALL_DIR) $(1)/etc/init.d
|
||||||
|
$(INSTALL_BIN) ./files/dhcpcd.init $(1)/etc/init.d/dhcpcd
|
||||||
|
$(INSTALL_CONF) $(PKG_INSTALL_DIR)/etc/dhcpcd.conf $(1)/etc/dhcpcd.conf
|
||||||
|
endef
|
||||||
|
|
||||||
|
$(eval $(call BuildPackage,dhcpcd))
|
24
net/dhcpcd/files/dhcpcd.init
Executable file
24
net/dhcpcd/files/dhcpcd.init
Executable file
|
@ -0,0 +1,24 @@
|
||||||
|
#!/bin/sh /etc/rc.common
|
||||||
|
#
|
||||||
|
# Copyright (C) 2014 OpenWrt.org
|
||||||
|
#
|
||||||
|
# This is free software, licensed under the GNU General Public License v2.
|
||||||
|
# See /LICENSE for more information.
|
||||||
|
#
|
||||||
|
|
||||||
|
START=30
|
||||||
|
STOP=85
|
||||||
|
USE_PROCD=1
|
||||||
|
|
||||||
|
start_service()
|
||||||
|
{
|
||||||
|
procd_open_instance
|
||||||
|
procd_set_param command /sbin/dhcpcd -B
|
||||||
|
procd_set_param respawn
|
||||||
|
procd_close_instance
|
||||||
|
}
|
||||||
|
|
||||||
|
reload_service()
|
||||||
|
{
|
||||||
|
/sbin/dhcpcd -n
|
||||||
|
}
|
Loading…
Reference in a new issue