Commit Graph

4877 Commits (2021.1.070)
 

Author SHA1 Message Date
pedro 67c2d03752 kernel: drivers: net: usb: qmi_wwan: fixes/updates from upstream
- add support for Quectel RM500Q
a9ff44f0e6

- re-add DW5821e pre-production variant
88bf54603f

- unconditionally reject 2 ep interfaces
00516d13d4

- add support for ASKEY WWHC050
12a5ba5a19

- add support for DW5816e
57c7f2bd75

- add Telit LE910C1-EUX composition
591612aa57

- add support for Quectel EG95 LTE modem
f815dd5cf4
5 years ago
pedro d8ea4ba57b Merge branch 'arm-master' into arm-sdk7 5 years ago
M_ars 147b6512e6 GUI: advanced-wireless.asp - small addendum for commit 8e55d575c5
Fix: field "wl_txpwr" is invalid

Note: be careful using that function/possibility
5 years ago
pedro 8f597c1a44 make: build the modules needed by apcupsd standalone - the way it is done so far only (unnecessarily) increases the kernel size, and we don't need amazing performance here and I bet 95% of users don't use it 5 years ago
pedro c876456a46 kernel: config_base: fix typo 5 years ago
pedro 43b8194de7 rc: openvpn.c: stay as close as possible to MIPS branch 5 years ago
Not Sure 43ff1ccaa2 Merged in fix-4f2967babc857d111e6190619434676016c8d7ac (pull request #30)
Fix typo
5 years ago
Not Sure 549549f975 Merged in fix-for-8715cbfc9f7a3759fe43655459166d3c1d92ffea (pull request #29)
Increase max-length of tx power field to 4 to allow entering 1000.
5 years ago
notsure2 4811ca7d97 Fix typo 5 years ago
notsure2 e3fd22ffe2 Increase max-length of tx power field to 4 to allow entering 1000. 5 years ago
Not Sure 8715cbfc9f Merged in increase-tx-power-limit-gui (pull request #28)
For routers with amplifiers, increase possible range to 1000 mW (30 dBm).
5 years ago
M_ars 4f2967babc rc: network.c: do not unload the wifi driver by default
Note: avoid reboot problems (also with new *.126 driver year 2020)!
user can enable the reload if needed. Default: Off now
5 years ago
notsure2 8e55d575c5 For routers with amplifiers, increase possible range to 1000 mW (30 dBm). 5 years ago
pedro 57a0cd6199 www: vpn: extend the sleep time for page to reload on start/stop the client/server 5 years ago
Don Bushway 66a03e86c6 Merged in arm-master (pull request #27)
Add Charter specific board ID for initial file, update make file to generate init file.
5 years ago
Don Bushway 4f315195b5 Merged in arm-master (pull request #26)
Remove Board ID for Charter specific routers, only have OEM board ID.
5 years ago
pedro 174244978e kernel: update ipt_webmon module, so it works also for https connections 5 years ago
pedro fd6875bd5a kernel: update ipt_webmon module, so it works also for https connections 5 years ago
snowman58 fd5daa5fb3 Add Charter specific board ID for initial file, update make file to generate init file. 5 years ago
snowman58 2618211ff1 Remove Board ID for Charter specific routers, only have OEM board ID. 5 years ago
Don Bushway f519487598 Merged pedro311/freshtomato-arm into arm-master 5 years ago
pedro 5f8bfe036c Merge branch 'arm-master' into arm-sdk7 5 years ago
M_ars e3ce164d6c SDK7: small addendum/correction for update part 1
see
5bc54580e2

Note: align to Asus SRC (also stay closer to SDK6)
5 years ago
M_ars 86fd29f5a2 SDK6: update wireless driver to fix Kr00k (dual core)
Note: single core with extra commit

tested with R7000, working!
5 years ago
pedro 1bba816207 www: tomato.js: add SameSite=Lax also when deleting cookies 5 years ago
pedro 6690c63a2d GUI: Status: Device List: also deauthenticate device when deleting DHCP lease
Discussion: https://www.linksysinfo.org/index.php?threads/howto-disassociate-client-from-wifi.75611/
5 years ago
pedro d1285e7019 router: rc: fix segfault in dhcpc-release and dhcpc-renew when run without arguments 5 years ago
M_ars fafca4e7d9 R8000: do not enable air time fairness by default
Note: user can enable/disable it at the GUI -> advanced-wireless.asp
5 years ago
pedro fcc07042ba system: add option to adjust tcp/udp buffers and thresholds
Based on: f1f080343a
5 years ago
pedro d6a346341a dnsmasq: update to 2.82
- cosmetic in patches
5 years ago
pedro 99706a066a build: rom: use a local copy of ca-certificates file when unable to download 5 years ago
pedro 946a7ec327 Merge branch 'arm-master' into arm-sdk7 5 years ago
pedro 39c10e27d4 kernel: netfilter: xt_recent: avoid high order page allocations
xt_recent can try high order page allocations and this can fail.

iptables: page allocation failure: order:9, mode:0xc0d0

It also wastes about half the allocated space because of kmalloc()
power-of-two roundups and struct recent_table layout.

Use vmalloc() instead to save space and be less prone to allocation
errors when memory is fragmented.

Reported-by: Miroslav Kratochvil <exa.exa@gmail.com>
Reported-by: Dave Jones <davej@redhat.com>
Reported-by: Harald Reindl <h.reindl@thelounge.net>
Signed-off-by: Eric Dumazet <edumazet@google.com>
Signed-off-by: Pablo Neira Ayuso <pablo@netfilter.org>

Ported from upstream: 2727de7604
5 years ago
pedro 246bae014f kernel: netfilter: xt_recent: fix namespace destroy path
recent_net_exit() is called before recent_mt_destroy() in the
destroy path of network namespaces. Make sure there are no entries
in the parent proc entry xt_recent before removing it.

Signed-off-by: Vitaly E. Lavrov <lve@guap.ru>
Signed-off-by: Pablo Neira Ayuso <pablo@netfilter.org>

Ported from upstream: 665e205c16
5 years ago
pedro 88f0009c9d kernel: netfilter: xt_recent: avoid high order page allocations
xt_recent can try high order page allocations and this can fail.

iptables: page allocation failure: order:9, mode:0xc0d0

It also wastes about half the allocated space because of kmalloc()
power-of-two roundups and struct recent_table layout.

Use vmalloc() instead to save space and be less prone to allocation
errors when memory is fragmented.

Reported-by: Miroslav Kratochvil <exa.exa@gmail.com>
Reported-by: Dave Jones <davej@redhat.com>
Reported-by: Harald Reindl <h.reindl@thelounge.net>
Signed-off-by: Eric Dumazet <edumazet@google.com>
Signed-off-by: Pablo Neira Ayuso <pablo@netfilter.org>

Ported from upstream: 2727de7604
5 years ago
pedro 09ac7fb24a kernel: netfilter: xt_recent: fix namespace destroy path
recent_net_exit() is called before recent_mt_destroy() in the
destroy path of network namespaces. Make sure there are no entries
in the parent proc entry xt_recent before removing it.

Signed-off-by: Vitaly E. Lavrov <lve@guap.ru>
Signed-off-by: Pablo Neira Ayuso <pablo@netfilter.org>

Ported from upstream: 665e205c16
5 years ago
pedro 70b7ec8083 patches: wsdd2: cosmetic 5 years ago
pedro 139fef8efc build: update logic how to apply patches 5 years ago
pedro b9da7edc4f httpd: update the way how failed GUI login attempts are added to log 5 years ago
pedro 136b217342 dnscrypt-proxy: update resolvers csv file 5 years ago
pedro 5c7696eb9a router: rom: Makefile: fix downloading dnscrypt-proxy resolvers file 5 years ago
pedro 13cb307aa8 Merge branch 'arm-master' into arm-sdk7 5 years ago
pedro a8b06b63a9 kernel: prepare for iptables fix (handling ICMPv6 reject --with-tcp-reset) 5 years ago
pedro c5e2d60f27 iptables: fix handling ICMPv6 reject --with-tcp-reset 5 years ago
Don Bushway 11a506b02f Merged in arm-master (pull request #25)
Update version to "V1.0.12.99" due to NETGEAR mandating no downgrades and having a limit on how high the new version can be.
5 years ago
pedro 5cf685756a iptables: fix match for ipt_account 5 years ago
pedro b16ab32ae4 iptables: fix save formatting for TRIGGER target 5 years ago
pedro 4f5fee17ea iptables: fix list formatting for ROUTE target 5 years ago
pedro 1683d929fd iptables: fix save formatting for ROUTE target 5 years ago
pedro edd24f1207 iptables: fix save formatting for libipt_account 5 years ago