aboutsummaryrefslogtreecommitdiff
path: root/net/siit
Commit message (Collapse)AuthorAge
* siit: fix compilation warningChristian Marangi2023-05-13
| | | | | | | | | | | | | | | | | Fix compilation warning for stack limit and variable length array. Fix compilation warning: CC [M] /home/ansuel/openwrt-ansuel/openwrt/build_dir/target-aarch64_cortex-a53_musl/linux-ipq807x_generic/siit-1.2/siit.o ../siit-1.2/siit.c: In function 'ip4_fragment': ../siit-1.2/siit.c:988:9: error: ISO C90 forbids variable length array 'buff' [-Werror=vla] 988 | char buff[FRAG_BUFF_SIZE+hdr_len]; /* buffer to form new fragment packet */ | ^~~~ ../siit-1.2/siit.c: In function 'siit_xmit': ../siit-1.2/siit.c:1359:1: error: the frame size of 2144 bytes is larger than 1024 bytes [-Werror=frame-larger-than=] 1359 | } | ^ cc1: all warnings being treated as errors Signed-off-by: Christian Marangi <ansuelsmth@gmail.com>
* siit: fix kernel 5.16 compileJohn Thomson2022-11-15
| | | | | | | | | | | | | | | siit-1.2/siit.c:1379:9: error: implicit declaration of function 'random_ether_addr' [-Werror=implicit-function-declaration] 1379 | random_ether_addr(dev->dev_addr); | ^~~~~~~~~~~~~~~~~ Linux 3.6 renamed random_ether_addr to eth_random_addr [0] Linux 5.16 removed random_ether_addr [1] [0]: https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git/commit/?id=0a4dd594982a321699000218715e28664ec49169 [1]: https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git/commit/?id=ba530fea8ca1b57ee71d4e62f287a5d7ed92f789 Signed-off-by: John Thomson <git@johnthomson.fastmail.com.au>
* siit: replace SUBDIRS with M in package recipeDavid Bauer2020-03-11
| | | | | | | The SUBDIRS variable has been removed in kernel 5.4, and was deprecated since the beginnig of kernel git history in favour of M or KBUILD_EXTMOD. Signed-off-by: David Bauer <mail@david-bauer.net>
* treewide: Change .*GPL.*+ licenses to SPDX compatible identifierSven Eckelmann2019-09-10
| | | | | | | | The CONTRIBUTING.md requests an (or multiple) SPDX identifier for GPL licenses. But a lot of packages did use a different, non-SPDX style with a "+" at the end instead of "-or-later". Signed-off-by: Sven Eckelmann <sven@narfation.org>
* [net/siit] Added compability for Linux >= 4.7.0Vladimir Ulrich2017-04-10
| | | | | | Closes #4242 Signed-off-by: Vladimir Ulrich <admin@evl.su>
* packages: cleanup Makefile variablesStephen Walker2016-07-09
| | | | | | Standard assignment is immediate expansion without any extraneous spacing, RFC822 compliant email addresses without any quotation marks and long git hashes Signed-off-by: Stephen Walker <stephendwalker+github@gmail.com>
* net: Fix typos (found by codespell)Stefan Weil2016-04-10
| | | | Signed-off-by: Stefan Weil <sw@weilnetz.de>
* [net/siit] Moved from oldpackages and updated for kernels 3.17+Vladimir Ulrich2015-04-23
Signed-off-by: Vladimir Ulrich <admin@evl.su>