mirror of
https://github.com/LiBwrt-op/openwrt-6.x.git
synced 2025-12-16 16:57:28 +00:00
338ca8abb950 dhcpv4: support IPv6-only preferred (RFC8925)
7336992e6866 dhcpv6-ia: fix a crash when static lease isn't configured
a170d63874f2 src: fix shadowed local variables
90f503fc7ca6 ubus: fix shadow local variable
ef8de928da7f build: enable DHCPV4_SUPPORT and UBUS
def8adea9e6c statefiles: remove hosts entries from statefile
e568bde96e9f odhcpd: remove OAF_BROKEN_HOSTNAME
1fe60e14e468 odhcpd: remove OAF_STATIC
9ae348c07ce0 dhcpv6: remove OAF_TENTATIVE
d0e6bc4d1cc2 odhcpd: remove OAF_BOUND
7fddd3916664 statefiles: change ipv4 MAC statefile syntax
bb2da6dcb58d build: fix BUILD_ARGS
94ef124f726e dhcpv6-ia: fix crash in dhcpv6_free_lease()
6fbd70c08342 build: disable static libraries
d21e504b38...6fbd70c083
Signed-off-by: Goetz Goerisch <ggoerisch@gmail.com>
Link: https://github.com/openwrt/openwrt/pull/21009
Signed-off-by: Álvaro Fernández Rojas <noltari@gmail.com>
88 lines
2.4 KiB
Makefile
88 lines
2.4 KiB
Makefile
#
|
|
# Copyright (C) 2013-2025 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:=odhcpd
|
|
PKG_RELEASE:=1
|
|
|
|
PKG_SOURCE_PROTO:=git
|
|
PKG_SOURCE_URL=$(PROJECT_GIT)/project/odhcpd.git
|
|
PKG_MIRROR_HASH:=cddf1a82865e1a064ff7aaf7b86e6ba076387f8717c95a0a0f0e49cebdd60dfd
|
|
PKG_SOURCE_DATE:=2025-12-01
|
|
PKG_SOURCE_VERSION:=6fbd70c0834279f5836585a90d7c957fbb23a7e5
|
|
|
|
PKG_MAINTAINER:=Álvaro Fernández Rojas <noltari@gmail.com>
|
|
PKG_LICENSE:=GPL-2.0
|
|
|
|
PKG_ASLR_PIE_REGULAR:=1
|
|
|
|
include $(INCLUDE_DIR)/package.mk
|
|
include $(INCLUDE_DIR)/cmake.mk
|
|
|
|
define Package/odhcpd/default
|
|
SECTION:=net
|
|
CATEGORY:=Network
|
|
DEPENDS:=+libjson-c +libubox +libuci +libubus +libnl-tiny
|
|
endef
|
|
|
|
define Package/odhcpd/default/description
|
|
odhcpd is a daemon for serving and relaying IP management protocols to
|
|
configure clients and downstream routers. It tries to follow the RFC 6204
|
|
requirements for IPv6 home routers.
|
|
endef
|
|
|
|
define Package/odhcpd
|
|
$(Package/odhcpd/default)
|
|
TITLE:=OpenWrt DHCPv4/DHCPv6/NDP/RA server
|
|
VARIANT:=full
|
|
endef
|
|
|
|
define Package/odhcpd/description
|
|
$(Package/odhcpd/default/description)
|
|
|
|
This is a variant with support for RA, DHCPv4 and DHCPv6. It can also be used
|
|
to relay RA, DHCPv6 and NDP messages between routed (non-bridged) interfaces
|
|
in case no delegated prefixes are available.
|
|
endef
|
|
|
|
define Package/odhcpd-ipv6only
|
|
$(Package/odhcpd/default)
|
|
TITLE:=OpenWrt DHCPv6/NDP/RA server (without DHCPv4)
|
|
VARIANT:=ipv6only
|
|
DEPENDS+=@IPV6
|
|
endef
|
|
|
|
define Package/odhcpd-ipv6only/description
|
|
$(Package/odhcpd/default/description)
|
|
|
|
This is a variant with support for RA and DHCPv6. It can also be used to
|
|
relay RA, DHCPv6 and NDP messages between routed (non-bridged) interfaces
|
|
in case no delegated prefixes are available.
|
|
endef
|
|
|
|
CMAKE_OPTIONS += -DUBUS=1
|
|
|
|
ifeq ($(BUILD_VARIANT),full)
|
|
CMAKE_OPTIONS += -DDHCPV4_SUPPORT=1
|
|
endif
|
|
|
|
define Package/odhcpd/install
|
|
$(INSTALL_DIR) $(1)/usr/sbin/
|
|
$(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/sbin/odhcpd $(1)/usr/sbin/
|
|
$(INSTALL_BIN) ./files/odhcpd-update $(1)/usr/sbin/
|
|
$(INSTALL_DIR) $(1)/etc/init.d
|
|
$(INSTALL_BIN) ./files/odhcpd.init $(1)/etc/init.d/odhcpd
|
|
$(INSTALL_DIR) $(1)/etc/uci-defaults
|
|
$(INSTALL_BIN) ./files/odhcpd.defaults $(1)/etc/uci-defaults/15_odhcpd
|
|
endef
|
|
|
|
Package/odhcpd-ipv6only/install = $(Package/odhcpd/install)
|
|
|
|
$(eval $(call BuildPackage,odhcpd))
|
|
$(eval $(call BuildPackage,odhcpd-ipv6only))
|