mirror of
https://github.com/motioneye-project/motioneyeos.git
synced 2025-07-25 20:26:34 +00:00
remove
This commit is contained in:
parent
af166567d0
commit
3cbcad5500
@ -1,31 +0,0 @@
|
|||||||
config BR2_PACKAGE_ISC_DHCP
|
|
||||||
bool "DHCP support"
|
|
||||||
default n
|
|
||||||
help
|
|
||||||
DHCP relay agent from the ISC DHCP distribution.
|
|
||||||
|
|
||||||
http://www.isc.org/products/DHCP
|
|
||||||
|
|
||||||
config BR2_PACKAGE_DHCP_SERVER
|
|
||||||
bool "dhcp server"
|
|
||||||
depends BR2_PACKAGE_ISC_DHCP
|
|
||||||
default n
|
|
||||||
help
|
|
||||||
DHCP server from the ISC DHCP distribution.
|
|
||||||
|
|
||||||
|
|
||||||
config BR2_PACKAGE_DHCP_RELAY
|
|
||||||
bool "dhcp relay"
|
|
||||||
depends BR2_PACKAGE_ISC_DHCP
|
|
||||||
default n
|
|
||||||
help
|
|
||||||
DHCP relay agent from the ISC DHCP distribution.
|
|
||||||
|
|
||||||
|
|
||||||
config BR2_PACKAGE_DHCP_CLIENT
|
|
||||||
bool "dhcp client"
|
|
||||||
depends BR2_PACKAGE_ISC_DHCP
|
|
||||||
default n
|
|
||||||
help
|
|
||||||
DHCP client from the ISC DHCP distribution.
|
|
||||||
|
|
@ -1,87 +0,0 @@
|
|||||||
#############################################################
|
|
||||||
#
|
|
||||||
# dhcp
|
|
||||||
#
|
|
||||||
#############################################################
|
|
||||||
DHCP:=dhcp-3.0.1.tar.gz
|
|
||||||
DHCP_SITE:=ftp://ftp.isc.org/isc/dhcp
|
|
||||||
DHCP_CAT:=zcat
|
|
||||||
DHCP_DIR:=$(BUILD_DIR)/dhcp-3.0.1
|
|
||||||
DHCP_RELAY_BINARY:=work.linux-2.2/relay/dhcrelay
|
|
||||||
DHCP_SERVER_TARGET_BINARY:=usr/sbin/dhcpd
|
|
||||||
DHCP_RELAY_TARGET_BINARY:=usr/sbin/dhcrelay
|
|
||||||
DHCP_CLIENT_TARGET_BINARY:=usr/sbin/dhclient
|
|
||||||
BVARS=PREDEFINES='-D_PATH_DHCPD_DB=\"/var/lib/dhcp/dhcpd.leases\" \
|
|
||||||
-D_PATH_DHCLIENT_DB=\"/var/lib/dhcp/dhclient.leases\"' \
|
|
||||||
VARDB=/var/lib/dhcp
|
|
||||||
|
|
||||||
$(DL_DIR)/$(DHCP):
|
|
||||||
$(WGET) -P $(DL_DIR) $(DHCP_SITE)/$(DHCP)
|
|
||||||
|
|
||||||
dhcp-source: $(DL_DIR)/$(DHCP)
|
|
||||||
|
|
||||||
$(DHCP_DIR)/.unpacked: $(DL_DIR)/$(DHCP)
|
|
||||||
$(DHCP_CAT) $(DL_DIR)/$(DHCP) | tar -C $(BUILD_DIR) $(TAR_OPTIONS) -
|
|
||||||
touch $(DHCP_DIR)/.unpacked
|
|
||||||
|
|
||||||
$(DHCP_DIR)/.configured: $(DHCP_DIR)/.unpacked
|
|
||||||
(cd $(DHCP_DIR); $(TARGET_CONFIGURE_OPTS) ./configure );
|
|
||||||
touch $(DHCP_DIR)/.configured
|
|
||||||
|
|
||||||
$(DHCP_DIR)/$(DHCP_RELAY_BINARY): $(DHCP_DIR)/.configured
|
|
||||||
$(MAKE) CC=$(TARGET_CC) $(BVARS) -C $(DHCP_DIR)
|
|
||||||
$(STRIP) $(DHCP_DIR)/$(DHCP_RELAY_BINARY)
|
|
||||||
|
|
||||||
$(TARGET_DIR)/$(DHCP_SERVER_TARGET_BINARY): $(DHCP_DIR)/$(DHCP_RELAY_BINARY)
|
|
||||||
(cd $(TARGET_DIR)/var/lib; ln -sf /tmp dhcp)
|
|
||||||
install -m 0755 $(DHCP_DIR)/dhcpd $(TARGET_DIR)/$(DHCP_SERVER_TARGET_BINARY)
|
|
||||||
install -m 0755 $(DHCP_DIR)/dhcp-server $(TARGET_DIR)/etc/init.d/dhcp-server
|
|
||||||
install -m 0644 $(DHCP_DIR)/dhcpd.conf $(TARGET_DIR)/etc/dhcp/dhcpd.conf
|
|
||||||
rm -rf $(TARGET_DIR)/share/locale $(TARGET_DIR)/usr/info \
|
|
||||||
$(TARGET_DIR)/usr/man $(TARGET_DIR)/usr/share/doc
|
|
||||||
|
|
||||||
$(TARGET_DIR)/$(DHCP_RELAY_TARGET_BINARY): $(DHCP_DIR)/$(DHCP_RELAY_BINARY)
|
|
||||||
(cd $(TARGET_DIR)/var/lib; ln -sf /tmp dhcp)
|
|
||||||
install -m 0755 $(DHCP_DIR)/work.linux-2.2/relay/dhcrelay $(TARGET_DIR)/$(DHCP_RELAY_TARGET_BINARY)
|
|
||||||
install -m 0755 $(DHCP_DIR)/work.linux-2.2/relay/dhcp-relay $(TARGET_DIR)/etc/init.d/dhcp-relay
|
|
||||||
install -m 0644 $(DHCP_DIR)/dhclient.conf $(TARGET_DIR)/etc/default/dhcp-relay
|
|
||||||
rm -rf $(TARGET_DIR)/share/locale $(TARGET_DIR)/usr/info \
|
|
||||||
$(TARGET_DIR)/usr/man $(TARGET_DIR)/usr/share/doc
|
|
||||||
|
|
||||||
$(TARGET_DIR)/$(DHCP_CLIENT_TARGET_BINARY): $(DHCP_DIR)/$(DHCP_RELAY_BINARY)
|
|
||||||
(cd $(TARGET_DIR)/var/lib; ln -sf /tmp dhcp)
|
|
||||||
install -m 0755 $(DHCP_DIR)/dhclient $(TARGET_DIR)/$(DHCP_CLIENT_TARGET_BINARY)
|
|
||||||
install -m 0644 $(DHCP_DIR)/dhclient.conf $(TARGET_DIR)/etc/dhcp/dhclient.conf
|
|
||||||
rm -rf $(TARGET_DIR)/share/locale $(TARGET_DIR)/usr/info \
|
|
||||||
$(TARGET_DIR)/usr/man $(TARGET_DIR)/usr/share/doc
|
|
||||||
|
|
||||||
dhcp_server: uclibc $(TARGET_DIR)/$(DHCP_SERVER_TARGET_BINARY)
|
|
||||||
|
|
||||||
dhcp_relay: uclibc $(TARGET_DIR)/$(DHCP_RELAY_TARGET_BINARY)
|
|
||||||
|
|
||||||
dhcp_client: uclibc $(TARGET_DIR)/$(DHCP_CLIENT_TARGET_BINARY)
|
|
||||||
|
|
||||||
dhcp-clean:
|
|
||||||
$(MAKE) DESTDIR=$(TARGET_DIR) CC=$(TARGET_CC) -C $(DHCP_DIR) uninstall
|
|
||||||
-$(MAKE) -C $(DHCP_DIR) clean
|
|
||||||
|
|
||||||
dhcp-dirclean:
|
|
||||||
rm -rf $(DHCP_DIR)
|
|
||||||
|
|
||||||
#############################################################
|
|
||||||
#
|
|
||||||
# Toplevel Makefile options
|
|
||||||
#
|
|
||||||
#############################################################
|
|
||||||
ifeq ($(strip $(BR2_PACKAGE_ISC_DHCP)),y)
|
|
||||||
TARGETS+=dhcp
|
|
||||||
endif
|
|
||||||
ifeq ($(strip $(BR2_PACKAGE_DHCP_SERVER)),y)
|
|
||||||
TARGETS+=dhcp_relay
|
|
||||||
endif
|
|
||||||
ifeq ($(strip $(BR2_PACKAGE_DHCP_RELAY)),y)
|
|
||||||
TARGETS+=dhcp_relay
|
|
||||||
endif
|
|
||||||
ifeq ($(strip $(BR2_PACKAGE_DHCP_CLIENT)),y)
|
|
||||||
TARGETS+=dhcp_relay
|
|
||||||
endif
|
|
Loading…
x
Reference in New Issue
Block a user