aboutsummaryrefslogtreecommitdiff
path: root/net/atftp
Commit message (Collapse)AuthorAge
* net/atftp: assign PKG_CPE_IDFabrice Fontaine2024-01-29
| | | | | | https://nvd.nist.gov/products/cpe/search/results?keyword=cpe:2.3:a:atftp_project:atftp Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>
* atftpd: Add 'enable' config optionJakub Raczynski2023-11-10
| | | | | | | | Current version of atftpd daemon does automatically start when installed. This commit adds 'enable' option to config file to have control over atftpd daemon. Signed-off-by: Jakub Raczynski <myszsoda@gmail.com>
* atftpd: Add missing field to default configurationJakub Raczynski2023-11-10
| | | | | | | Although init script did consist of default value for missing 'port' field, add it to configuration file for consistency. Signed-off-by: Jakub Raczynski <myszsoda@gmail.com>
* atftpd: Refactor init scriptJakub Raczynski2023-11-10
| | | | | | | - Add local variables for read configuration - Convert uppercase to lowercase for local variables Signed-off-by: Jakub Raczynski <myszsoda@gmail.com>
* atftp: move to PCRE2Christian Marangi2023-09-27
| | | | | | | Move atftp to PCRE2 as PCRE is flagged as EOL and won't receive security updates anymore. Signed-off-by: Christian Marangi <ansuelsmth@gmail.com>
* atftp: bump to release 0.8.0Christian Marangi2023-09-27
| | | | | | | Bump to release 0.8.0. Autorecong is now needed to correctly compile the package. Signed-off-by: Christian Marangi <ansuelsmth@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>
* atftp: update to 0.7.5Rosen Penev2021-12-17
| | | | | | Remove upstreamed patches. Signed-off-by: Rosen Penev <rosenp@gmail.com>
* atftpd: fix conffilesHuangbin Zhan2021-10-27
| | | | | | | Add missing conffiles Fix conffile permission Signed-off-by: Huangbin Zhan <zhanhb88@gmail.com>
* atftp: update to 0.7.4Rosen Penev2021-02-14
| | | | | | Remove upstreamed patches. Refresh others. Signed-off-by: Rosen Penev <rosenp@gmail.com>
* atftp: fix compilation with glibcRosen Penev2020-12-30
| | | | | | | | It's defining two functions twice for some reason. Refreshed patches. Signed-off-by: Rosen Penev <rosenp@gmail.com>
* CI: add runtime test for atftp and atftpdRussell Senior2020-09-18
| | | | Signed-off-by: Russell Senior <russell@personaltelco.net>
* atftp: add init script and config fileRussell Senior2020-09-18
| | | | Signed-off-by: Russell Senior <russell@personaltelco.net>
* atftp: completely remove cdefs usageRosen Penev2020-08-10
| | | | | | sys/cdefs.h is not provided by musl. Signed-off-by: Rosen Penev <rosenp@gmail.com>
* atftp: fix compilation with newer muslRosen Penev2020-03-29
| | | | | | Added missing header for __THROW. Signed-off-by: Rosen Penev <rosenp@gmail.com>
* atftp: Update to 0.7.2Rosen Penev2019-08-27
| | | | | | | | | | | | | Fixes issue where CFLAGS were not being passed. This was breaking ASLR builds. Added PKG_BUILD_PARALLEL for faster compilation. Added PKG_INSTALL. Changed install paths based on PKG_INSTALL paths. Added --disable-debug to make sure debug code is disabled. Signed-off-by: Rosen Penev <rosenp@gmail.com>
* treewide: fix incorrect *_BUILD_DEPENDSMatthias Schiffer2018-01-09
| | | | | | | | | | | | | | | | Build depends refer to source package names, not binary package names. In many cases, PKG_BUILD_DEPENDS simply duplicated runtime dependencies of a source package's binary packages; as the corresponding source packages are implicitly added as bulid dependencies, PKG_BUILD_DEPENDS can simply be dropped in these cases. In the other cases, *_BUILD_DEPENDS is fixed to refer to the correct source package name. Dependency of mysql-server is adjusted from libncursesw to libncurses (as libncursesw is a virtual package provided by libncurses), so the build dependency on ncurses is emitted unconditionally. Signed-off-by: Matthias Schiffer <mschiffer@universe-factory.net>
* net/atftp: update source URL and checksumPaul Wassi2017-04-01
| | | | | | | Update package source to use '@SF' (SourceForge) instead of URL Replace md5sum by new hash Signed-off-by: Paul Wassi <p.wassi@gmx.at>
* atftp: Fix "undefined reference" linker errors.Daniel Danzberger2015-12-11
| | | | | | These errors were caused by using "inline" functions in a non-static context. Signed-off-by: Daniel Danzberger <daniel@dd-wrt.com>
* atftp: fix invalid read in tftp_send_request.Daniel Danzberger2015-11-04
| | | | | | | This invalid read of 1 byte caused a segfault on some arm platforms. Signed-off-by: Daniel Danzberger <daniel@dd-wrt.com>
* atftp: add new packageDaniel Danzberger2015-09-09
TODO: - add init script for atftpd - merge '120-retry-option.patch' from old atftp packages. Signed-off-by: Daniel Danzberger <daniel@dd-wrt.com>