odhcp6c: update to Git HEAD (2025-11-14)
authorÁlvaro Fernández Rojas <[email protected]>
Sat, 15 Nov 2025 07:29:52 +0000 (08:29 +0100)
committerÁlvaro Fernández Rojas <[email protected]>
Sat, 15 Nov 2025 15:41:29 +0000 (16:41 +0100)
cbc8ff0e6226 github: ci: add powerpc arch
8eba02233133 github: ci: add cmake build and source directories
5f3104ea17ae github: ci: disable json-c tests
27ff42cd40f9 scripts: devel-build: disable json-c tests
e0a9d02b52d1 dhcpv6: DHCPV6_OPT_INFO_REFRESH contains a 4 byte option
5a02da9c1200 dhcpv6: use compile time resolved sizeof(struct in6_addr) for IPv6 values
cf203ceb3fc8 dhcpv6: set a static define for DUID max length
3627e85d1540 dhcpv6: set static defines for DHCPv6 option header size
ecb9a0243e77 odhcp6c: RFC comments
c284c587d37d all: spell fixes
1259a32d7e4d dhcpv6: dhcpv6_handle_reply switch case handling
227280a37853 dhcpv6: dhcpv6_handle_advert; migrate if blocks to switch case
b253f8907e72 dhcpv6: migrate to switch case for dhcpv6_handle_reply
61a54db802cb dhcpv6: migrate to switch case for dhcpv6_handle_reply
49c64bbe00ba all: drop CER_ID
16ce83075b2e dhcpv6: refactor u8 and u16 to u32 to avoid boolean coercion

https://github.com/openwrt/odhcp6c/compare/e5690c1f13ed...cbc8ff0e6226

Options related to homenet (EXT_CER_ID) have been removed, so drop them from
the package.

Signed-off-by: Álvaro Fernández Rojas <[email protected]>
Link: https://github.com/openwrt/openwrt/pull/20791
package/network/ipv6/odhcp6c/Makefile
package/network/ipv6/odhcp6c/files/dhcpv6.script

index fdcd328e08f8917d7342182f15725c0af95d77e0..d7f0eee163097778f7342d4c6ab510e647552589 100644 (file)
@@ -12,9 +12,9 @@ PKG_RELEASE:=1
 
 PKG_SOURCE_PROTO:=git
 PKG_SOURCE_URL=$(PROJECT_GIT)/project/odhcp6c.git
-PKG_SOURCE_DATE:=2025-11-09
-PKG_SOURCE_VERSION:=e5690c1f13ed3605ece68d870abb3c4a2f09d571
-PKG_MIRROR_HASH:=4dbf3980f8ac72f92f68c5dbac7179c28aab0e012a53162e0defbbf5959a9389
+PKG_SOURCE_DATE:=2025-11-14
+PKG_SOURCE_VERSION:=cbc8ff0e62261a5681dab1aa6d0e503545178354
+PKG_MIRROR_HASH:=3c3b73c9b74c45900128d91ad443d4411a5ba3f9246b97a562d9acaf7a9f01f3
 PKG_MAINTAINER:=Hans Dedecker <[email protected]>
 PKG_LICENSE:=GPL-2.0
 
@@ -23,10 +23,6 @@ include $(INCLUDE_DIR)/cmake.mk
 
 CMAKE_OPTIONS += -DUBUS=1
 
-ifneq ($(CONFIG_PACKAGE_odhcp6c_ext_cer_id),0)
-  CMAKE_OPTIONS += -DEXT_CER_ID=$(CONFIG_PACKAGE_odhcp6c_ext_cer_id)
-endif
-
 define Package/odhcp6c
   SECTION:=net
   CATEGORY:=Network
@@ -34,13 +30,6 @@ define Package/odhcp6c
   DEPENDS:=@IPV6 +libubox +libubus
 endef
 
-define Package/odhcp6c/config
-  config PACKAGE_odhcp6c_ext_cer_id
-    int "CER-ID Extension ID (0 = disabled)"
-    depends on PACKAGE_odhcp6c
-    default 0
-endef
-
 define Package/odhcp6c/conffiles
 /etc/odhcp6c.user
 /etc/odhcp6c.user.d/
index 4a3b1b272c5ddabc79aba62733998f60b104bd89..94f1952ecc4756f59c34936001ff51a3cea75a3a 100755 (executable)
@@ -142,7 +142,6 @@ setup_interface () {
        done
 
        proto_add_data
-       [ -n "$CER" ] && json_add_string cer "$CER"
        [ -n "$PASSTHRU" ] && json_add_string passthru "$PASSTHRU"
        [ -n "$ZONE" ] && json_add_string zone "$ZONE"
        proto_close_data