9 Commits

Author SHA1 Message Date
Jan-Niklas Burfeind
906b9248e3 uradvd: implement test.sh
to verify the version emitted by uradvd is not empty.

Signed-off-by: Jan-Niklas Burfeind <git@aiyionpri.me>
2025-10-25 08:29:32 +03:00
Jan-Niklas Burfeind
7096816e21 uradvd: update to r26-1e64364d
The OpenWrt package will not provide the correct version information
but the date of the last git commit
in order to ease packaging following the discussions in #27482 and #27614.

Co-authored-by: Nora Matthias Schiffer <neocturne@universe-factory.net>
Co-authored-by: Moritz Warning <moritzwarning@web.de>
Signed-off-by: Jan-Niklas Burfeind <git@aiyionpri.me>
2025-10-25 08:29:32 +03:00
Jan-Niklas Burfeind
b08d9d5a38 uradvd: use INSTALL_CONF for confguration
instead of INSTALL_DATA.

Co-authored-by: Josef Schlehofer <pepe.schlehofer@gmail.com>
Signed-off-by: Jan-Niklas Burfeind <git@aiyionpri.me>
2025-10-25 08:29:32 +03:00
Jan-Niklas Burfeind
e7a4667175 uradvd: provide warning upon disabled configuration
which grants clarity and better traceability.

Signed-off-by: Jan-Niklas Burfeind <git@aiyionpri.me>
2025-08-24 03:19:22 +03:00
Jan-Niklas Burfeind
b2f14a5e8d uradvd: Update to 2025-08-16
Provide four new options:
--valid-lifetime
--preferred-lifetime
--max-router-adv-interval
--min-router-adv-interval

Signed-off-by: Jan-Niklas Burfeind <git@aiyionpri.me>
2025-08-24 03:19:22 +03:00
Robert Marko
272f55e87f treewide: refresh hashes after move to use ZSTD as default
With the recent move to using ZSTD as the default compression format
for packaging git repo clones we must refresh all of the hashes for
the packages feed as well.

Signed-off-by: Robert Marko <robimarko@gmail.com>
2024-04-07 12:06:34 +02:00
Paul Fertser
0c10c224be treewide: remove AUTORELEASE
Automatically compute and substitute current values for all
$(AUTORELEASE) instances as this feature is deprecated and shouldn't be
used.

The following temporary change was made to the core:

diff --git a/rules.mk b/rules.mk
index 57d7995d4fa8..f16367de87a8 100644
--- a/rules.mk
+++ b/rules.mk
@@ -429,7 +429,7 @@ endef
 abi_version_str = $(subst -,,$(subst _,,$(subst .,,$(1))))

 COMMITCOUNT = $(if $(DUMP),0,$(call commitcount))
-AUTORELEASE = $(if $(DUMP),0,$(call commitcount,1))
+AUTORELEASE = $(if $(DUMP),0,$(shell sed -i "s/\$$(AUTORELEASE)/$(call commitcount,1)/" $(CURDIR)/Makefile))

 all:
 FORCE: ;

And this command used to fix affected packages:

for i in $(cd feeds/packages; git grep -l PKG_RELEASE:=.*AUTORELEASE | \
                              sed 's^.*/\([^/]*\)/Makefile^\1^';);
do
  make package/$i/download
done

Signed-off-by: Paul Fertser <fercerpav@gmail.com>
2023-04-21 22:46:58 +02:00
Huangbin Zhan
1c3600ca68 uradvd: fix installed filename, add conffiles
Signed-off-by: Huangbin Zhan <zhanhb88@gmail.com>
2021-10-27 23:18:42 -07:00
Moritz Warning
1506e40c78 uradvd: add new package
Send IPv6 router advertisments.

Signed-off-by: Moritz Warning <moritzwarning@web.de>
Co-authored-by: Matthias Schiffer <mschiffer@universe-factory.net>
2021-10-14 21:46:41 +02:00