aboutsummaryrefslogtreecommitdiff
path: root/net/hs20
Commit message (Collapse)AuthorAge
* hs20: fix compilation with libxml 2.12Rosen Penev2024-01-02
| | | | Signed-off-by: Rosen Penev <rosenp@gmail.com>
* treewide: remove AUTORELEASEPaul Fertser2023-04-21
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 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>
* treewide: add missing conffilesHuangbin Zhan2021-10-27
| | | | Signed-off-by: Huangbin Zhan <zhanhb88@gmail.com>
* hs20: switch dependencies to php8Michael Heimpold2021-10-14
| | | | Signed-off-by: Michael Heimpold <mhei@heimpold.de>
* hs20: set PKG_SOURCE_SUBDIRDaniel Golle2021-07-24
| | | | | | | Building without the mirror-tarballs fails to PKG_SOURCE_SUBDIR not matching the hostapd source subdir name. Fix that. Signed-off-by: Daniel Golle <daniel@makrotopia.org>
* hs20: fix linking with full language support enabledMichael Heimpold2021-03-02
| | | | | | | | After d18692c, we need to include nls.mk to setup correct environment variables so that linking succeeds. Reported-by: Josef Schlehofer <pepe.schlehofer@gmail.com> Signed-off-by: Michael Heimpold <mhei@heimpold.de>
* hs20: patch hostapd to make use of updated dm_ddfDaniel Golle2020-12-20
| | | | Signed-off-by: Daniel Golle <daniel@makrotopia.org>
* hs20: some small improvementsDaniel Golle2020-12-20
| | | | | | | | * update device description framework to v1.3 * setup methods in database * setup uhttpd to use hs20 cert Signed-off-by: Daniel Golle <daniel@makrotopia.org>
* hs20: prepare server using uci-defaults and ship filesDaniel Golle2020-08-17
| | | | | | | | | Setup user database if non-existent, configure uhttpd .php interpreter and patch php scripts to work out-of-the-box. Also ship Hotspot 2.0 SPP and OMA DM XML schema/DTD files needed at run-time for both client and server. Signed-off-by: Daniel Golle <daniel@makrotopia.org>
* hs20: add Hotspot 2.0 OSU client and server implementationDaniel Golle2020-08-15
Add hs20-server and hs20-client packages correspoding to the hs20/client and hs20/server folder in hostap.git. Signed-off-by: Daniel Golle <daniel@makrotopia.org>