Simplify configure and add target optimizations, Rename dhcp package to dhcp-server, Add dhcp-relay package.
SVN-Revision: 1405
This commit is contained in:
parent
bc67e5c220
commit
87066add71
4 changed files with 45 additions and 16 deletions
|
@ -1,7 +1,25 @@
|
|||
config BR2_PACKAGE_DHCP
|
||||
tristate "dhcp"
|
||||
bool
|
||||
default n
|
||||
depends BR2_PACKAGE_DHCP_RELAY || BR2_PACKAGE_DHCP_SERVER
|
||||
|
||||
config BR2_PACKAGE_DHCP_RELAY
|
||||
tristate "dhcp-relay - ISC DHCP relay"
|
||||
default m if CONFIG_DEVEL
|
||||
help
|
||||
dhcp server
|
||||
ISC (Internet Software Consortium) DHCP (Dynamic Host Configuration
|
||||
Protocol) relay daemon.
|
||||
|
||||
http://www.isc.org/
|
||||
|
||||
|
||||
config BR2_PACKAGE_DHCP_SERVER
|
||||
tristate "dhcp-server - ISC DHCP server"
|
||||
default m if CONFIG_DEVEL
|
||||
help
|
||||
ISC (Internet Software Consortium) DHCP (Dynamic Host Configuration
|
||||
Protocol) server daemon.
|
||||
|
||||
http://www.isc.org/
|
||||
|
||||
|
||||
http://www.isc.org
|
||||
|
|
|
@ -16,15 +16,14 @@ PKG_INSTALL_DIR:=$(PKG_BUILD_DIR)/ipkg-install
|
|||
|
||||
include $(TOPDIR)/package/rules.mk
|
||||
|
||||
$(eval $(call PKG_template,DHCP,dhcp,$(PKG_VERSION)-$(PKG_RELEASE),$(ARCH)))
|
||||
$(eval $(call PKG_template,DHCP_RELAY,dhcp-relay,$(PKG_VERSION)-$(PKG_RELEASE),$(ARCH)))
|
||||
$(eval $(call PKG_template,DHCP_SERVER,dhcp-server,$(PKG_VERSION)-$(PKG_RELEASE),$(ARCH)))
|
||||
|
||||
$(PKG_BUILD_DIR)/.configured: $(PKG_BUILD_DIR)/.prepared
|
||||
(cd $(PKG_BUILD_DIR); rm -rf config.{cache,status} ; \
|
||||
$(TARGET_CONFIGURE_OPTS) \
|
||||
CFLAGS="$(TARGET_CFLAGS)" \
|
||||
CPPFLAGS="-I$(STAGING_DIR)/usr/include" \
|
||||
LDFLAGS="-L$(STAGING_DIR)/usr/lib" \
|
||||
(cd $(PKG_BUILD_DIR) ; \
|
||||
./configure \
|
||||
--copts "$(TARGET_CFLAGS)" \
|
||||
linux-2.2 \
|
||||
);
|
||||
touch $@
|
||||
|
||||
|
@ -37,8 +36,14 @@ $(PKG_BUILD_DIR)/.built:
|
|||
all install
|
||||
touch $@
|
||||
|
||||
$(IPKG_DHCP):
|
||||
install -d -m0755 $(IDIR_DHCP)/usr/sbin
|
||||
cp -fpR $(PKG_INSTALL_DIR)/usr/sbin/dhcpd $(IDIR_DHCP)/usr/sbin
|
||||
$(RSTRIP) $(IDIR_DHCP)
|
||||
$(IPKG_BUILD) $(IDIR_DHCP) $(PACKAGE_DIR)
|
||||
$(IPKG_DHCP_RELAY):
|
||||
install -d -m0755 $(IDIR_DHCP_RELAY)/usr/sbin
|
||||
cp -fpR $(PKG_INSTALL_DIR)/usr/sbin/dhcrelay $(IDIR_DHCP_RELAY)/usr/sbin/
|
||||
$(RSTRIP) $(IDIR_DHCP_RELAY)
|
||||
$(IPKG_BUILD) $(IDIR_DHCP_RELAY) $(PACKAGE_DIR)
|
||||
|
||||
$(IPKG_DHCP_SERVER):
|
||||
install -d -m0755 $(IDIR_DHCP_SERVER)/usr/sbin
|
||||
cp -fpR $(PKG_INSTALL_DIR)/usr/sbin/dhcpd $(IDIR_DHCP_SERVER)/usr/sbin/
|
||||
$(RSTRIP) $(IDIR_DHCP_SERVER)
|
||||
$(IPKG_BUILD) $(IDIR_DHCP_SERVER) $(PACKAGE_DIR)
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
Package: dhcp
|
||||
Package: dhcp-relay
|
||||
Priority: optional
|
||||
Section: net
|
||||
Maintainer: OpenWrt Developers <bugs@openwrt.org>
|
||||
Source: http://openwrt.org/cgi-bin/viewcvs.cgi/openwrt/package/dhcp/
|
||||
Description: isc dhcp server
|
||||
Description: ISC DHCP relay
|
6
openwrt/package/dhcp/ipkg/dhcp-server.control
Normal file
6
openwrt/package/dhcp/ipkg/dhcp-server.control
Normal file
|
@ -0,0 +1,6 @@
|
|||
Package: dhcp-server
|
||||
Priority: optional
|
||||
Section: net
|
||||
Maintainer: OpenWrt Developers <bugs@openwrt.org>
|
||||
Source: http://openwrt.org/cgi-bin/viewcvs.cgi/openwrt/package/dhcp/
|
||||
Description: ISC DHCP server
|
Loading…
Reference in a new issue