Commit Graph

8143 Commits

Author SHA1 Message Date
Rafał Miłecki
4aa20aca2d bcm63xx-cfe: update to the latest master
c0b3691 netgear: r8000p: add cferam file
ae870eb asus: gt-ac5300: add cferam file
424b57c sfr: neufbox-6v-foxconn-r0: update cferam file
81a2a8b sfr: neufbox-6v-foxconn-r0: add cferam file
2730361 sercomm: h500-s: add cferam file

Signed-off-by: Rafał Miłecki <rafal@milecki.pl>
2020-12-30 11:26:06 +08:00
Tianling Shen
41e30c0d5e
rockchip: use vendor driver for NanoPi R4S
However, mainline driver doesn't work very well on RTL8111
devices, so let's move to vendor driver for better performance.

Signed-off-by: Tianling Shen <cnsztl@gmail.com>
2020-12-28 22:24:12 +08:00
Tianling Shen
8e70f5b072
rockchip: overclock to 2.2/1.8 GHz for NanoPi4 devices
It's stable enough to overclock cpu frequency to 2.2/1.8 GHz,
and for better performance.

Signed-off-by: Tianling Shen <cnsztl@gmail.com>
Co-authored-by: gzelvis <gzelvis@gmail.com>
2020-12-28 22:24:04 +08:00
Tianling Shen
758be135ea
rockchip: fixes re-boot with UHS cards
Some boards have SD card connectors where the power rail cannot be switched
off by the driver. If the card has not been power cycled, it may still be
using 1.8V signaling after a warm re-boot. Bootroms expecting 3.3V signaling
will fail to boot from a UHS card that continue to use 1.8V signaling.

Set initial signal voltage in mmc_power_off() to allow re-boot to function.

This fixes re-boot with UHS cards on Asus Tinker Board (Rockchip RK3288),
same issue have been seen on some Rockchip RK3399 boards.

Backport from https://lore.kernel.org/linux-rockchip/AM3PR03MB09664161A7FA2BD68B2800A7AC620@AM3PR03MB0966.eurprd03.prod.outlook.com/

Signed-off-by: Tianling Shen <cnsztl@gmail.com>
2020-12-28 22:23:57 +08:00
Adrian Schmutzler
ea3a1b4d60 ath79: remove duplicate sysupgrade.bin for dlink_dap-2xxx
sysupgrade.bin has been added to IMAGES twice, resulting in
warnings like:

Makefile:86: warning: overriding recipe for target
  '[...]/tmp/openwrt-ath79-generic-dlink_dap-2660-a1-squashfs-sysupgrade.bin'
Makefile:86: warning: ignoring old recipe for target
  '[...]/tmp/openwrt-ath79-generic-dlink_dap-2660-a1-squashfs-sysupgrade.bin'

Signed-off-by: Adrian Schmutzler <freifunk@adrianschmutzler.de>
2020-12-28 11:21:36 +08:00
Adrian Schmutzler
865d430f4b ath79/mikrotik: disable building NAND images
The current support for MikroTik NAND-based devices relies on a
gross hack that packs the kernel into a static YAFFS stub, as the
stock bootloader only supports booting a YAFFS-encapsulated kernel.

The problem with this approach is that since the kernel partition is
blindly overwritten without any kind of wear or badblock management
(due to lack of proper support for YAFFS in OpenWRT), the NAND flash
is not worn uniformly and eventually badblocks appear, leading to
unbootable devices.

Until a proper fix is found (or the stock bootloader supports other
filesystems), we disable building these images to prevent unknowing
users from risking their devices.

Thanks to Thibaut Varène for summarizing the details above.

Signed-off-by: Adrian Schmutzler <freifunk@adrianschmutzler.de>
2020-12-28 11:21:12 +08:00
Adrian Schmutzler
a33f473fbd treewide: use more descriptive names for concatenated partitions
A few devices in ath79 and ramips use mtd-concat to concatenate
individual partitions into a bigger "firmware" or "ubi" partition.

However, the original partitions are still present and visible,
and one can write to them directly although this might break the
actual virtual, concatenated partition.

As we cannot do much about the former, let's at least choose more
descriptive names than just "firmwareX" in order to indicate the
concatenation to the user. He might be less tempted into overwriting
a "fwconcat1" than a "firmware1", which might be perceived as an
alternate firmware for dual boot etc.

This applies the new naming consistently for all relevant devices,
i.e. fwconcatX for virtual "firmware" members and ubiconcatX for
"ubi" members.

While at it, use DT labels and label property consistently, and
also use consistent zero-based indexing.

Signed-off-by: Adrian Schmutzler <freifunk@adrianschmutzler.de>
2020-12-28 11:20:45 +08:00
Sungbo Eo
4120515461 kernel: add disabled PROC_STRIPPED
Otherwise the missing symbol is added to target config for every kernel
config refresh.

While at it, remove the disabled symbol from target configs.

Fixes: 4943bc5cff ("kernel: only strip proc for small flash devices")
Signed-off-by: Sungbo Eo <mans0n@gorani.run>
2020-12-28 11:19:07 +08:00
CN_SZTL
80bc803653
kmod-sched-cake-oot: remove obsoleted package 2020-12-27 14:29:59 +08:00
Tianling Shen
cd7fd0c77b
rockchip: add NanoPi R4S support
Hardware
--------
RockChip RK3399 ARM64 (6 cores)
1GB DDR3 or 4GB LPDDR4 RAM
2x 1000 Base-T
3 LEDs (LAN / WAN / SYS)
1 Button (Reset)
Micro-SD slot
2x USB 3.0 Port

Installation
------------
Uncompress the OpenWrt sysupgrade and write it to a micro SD card using
dd.

Signed-off-by: Tianling Shen <cnsztl@gmail.com>
Co-authored-by: Jensen Huang <jensenhuang@friendlyarm.com>
Signed-off-by: Jensen Huang <jensenhuang@friendlyarm.com>
Co-authored-by: Marty Jones <mj8263788@gmail.com>
Signed-off-by: Marty Jones <mj8263788@gmail.com>
2020-12-27 14:02:01 +08:00
Tianling Shen
83d3fb9634
uboot-rockchip: add NanoPi R4S support
Add support for the FriendlyARM NanoPi R4S.

Signed-off-by: Tianling Shen <cnsztl@gmail.com>
Co-authored-by: Jensen Huang <jensenhuang@friendlyarm.com>
Signed-off-by: Jensen Huang <jensenhuang@friendlyarm.com>
Co-authored-by: Marty Jones <mj8263788@gmail.com>
Signed-off-by: Marty Jones <mj8263788@gmail.com>
2020-12-27 14:01:58 +08:00
CN_SZTL
b3abb769ea
Merge Mainline 2020-12-27 00:39:53 +08:00
CN_SZTL
e696ebab8f
luci-lib-docker: refresh dependencies 2020-12-27 00:34:21 +08:00
CN_SZTL
b0057886f3
luci-app-diskman: fix path to source 2020-12-27 00:31:32 +08:00
CN_SZTL
c10f27e6a0
pdnsd-alt: add missing PKG_MIRROR_HASH 2020-12-27 00:14:14 +08:00
CN_SZTL
ee155bad4c
Merge Mainline 2020-12-27 00:10:32 +08:00
CN_SZTL
940cffb591
pdnsd-alt: fix typo 2020-12-27 00:09:56 +08:00
CN_SZTL
29efd8cb48
quickjs: add package 2020-12-26 23:32:52 +08:00
CN_SZTL
4385e19cb0
Merge Mainline 2020-12-26 23:30:07 +08:00
CN_SZTL
85422cfbe2
treewide: remame wget -> wget-ssl 2020-12-26 23:27:13 +08:00
CN_SZTL
d6d3518a46
Merge Mainline 2020-12-26 23:06:26 +08:00
Beginner
62aa5a08f5
xray: Update to v1.1.5 2020-12-26 23:05:06 +08:00
CN_SZTL
854d634559
luci-app-passwall: sync with upstream source 2020-12-26 23:04:52 +08:00
Mattraks
36d92a4b61
luci-app-ssr-plus: bump to 182-1
- Important improvement
Rewrite startup code to speed up startup
Same as global server, no need to start multiple processes
Use unified path and configuration

- Changes
Add Reset default settings
Optimize the use of shadowsocks plugin
Remove the sh script used in update and modify the UI usage
Remove Easylist China from adblock and add NEO DEV HOST
Adjust the parameters used by wget to ensure compatibility

- Fixes
Fix the issue of starting twice after apply in the server node list
Fix the problem that dnsmasq fails to start when the access control list contains wrong entries
2020-12-26 23:03:12 +08:00
Mattraks
b9724bcede
tcping: switch to self-maintained source 2020-12-26 22:57:52 +08:00
CN_SZTL
e435ee4a44
mtk-eip93: add missing PKG_MIRROR_HASH 2020-12-26 22:33:21 +08:00
CN_SZTL
242b9f9264
treewide: add missing PKG_HASH / PKG_MIRROR_HASH
Signed-off-by: CN_SZTL <cnsztl@project-openwrt.eu.org>
2020-12-26 22:15:11 +08:00
CN_SZTL
475e6cafd5
dnscrypt-proxy-full: remove outdated package 2020-12-26 21:06:05 +08:00
CN_SZTL
9f22c1307d
proxychains-ng: remove upstreamed package 2020-12-26 21:00:08 +08:00
CN_SZTL
230ea93953
dns2socks: remove duplicated package 2020-12-26 20:32:59 +08:00
CN_SZTL
397ae298e7
antfs: remove upstreamed packages 2020-12-26 20:28:54 +08:00
CN_SZTL
9841015cd0
luci-theme-edge: fix typo error 2020-12-26 17:23:52 +08:00
CN_SZTL
87df3ce4ab
luci-theme-edge: add missing dependencies 2020-12-26 17:20:47 +08:00
CN_SZTL
dfcbe405c7
autocore-arm: redirect error_msg to blackhole 2020-12-26 17:16:58 +08:00
David Bauer
3d79ad3f05 ipq40xx: revert usage of VLAN S-TAG
This reverts the usage of the S-Tag for separating LAN and WAN port on
the embedded switch. Many users complained about not being able to
manage C-Tag addition / removal on the switch as well as degraded
performance.

Fixes: commit 9da2b56760 ("ipq40xx: fix ethernet vlan double tagging")

Signed-off-by: David Bauer <mail@david-bauer.net>
2020-12-26 17:10:47 +08:00
CN_SZTL
795080709d
pdnsd-alt: update PKG_RELEASE 2020-12-26 14:38:40 +08:00
Marty Jones
b861ae3270
rockchip: use USB host by default on rk3399-rock-pi-4
This backport  fix connections errors on the
upper USB3 port of the Radxa ROCK Pi 4 .

Signed-off-by: Marty Jones <mj8263788@gmail.com>
2020-12-26 12:53:59 +08:00
CN_SZTL
e89c161dde
linux: refresh kernel patches
Signed-off-by: CN_SZTL <cnsztl@project-openwrt.eu.org>
2020-12-26 11:39:07 +08:00
Yousong Zhou
7e6ba5ef35 kmod-tcp-hybla: new module for hybla congestion control algorithm
Just the module and no default sysctl conf file is provided

Signed-off-by: Yousong Zhou <yszhou4tech@gmail.com>
2020-12-26 11:37:33 +08:00
Yousong Zhou
fe11dd1fa3 kmod-tcp-bbr: use AutoProbe
Signed-off-by: Yousong Zhou <yszhou4tech@gmail.com>
2020-12-26 11:37:06 +08:00
Yousong Zhou
787911c076 kmod-tcp-bbr: leave CONFIG_TCP_CONG_ADVANCED to target config
Since generic has the option set to y and other targets now inherit that
choice, there is no behaviour change

Signed-off-by: Yousong Zhou <yszhou4tech@gmail.com>
2020-12-26 11:36:43 +08:00
Yousong Zhou
a54c207d46 kernel: remove target specific setting of CONFIG_TCP_CONG_ADVANCED
The option was introduced in upstream linux commit a6484045 ("[TCP]: Do
not present confusing congestion control options by default.").

The option is set to y in generic config and to the moment does not
incur additional size increment.  Make it y for all so that packages
such as kmod-tcp-bbr do not have to set it on every occasion

Signed-off-by: Yousong Zhou <yszhou4tech@gmail.com>
2020-12-26 11:36:18 +08:00
AmadeusGhost
c6fbdf1b83 ipq40xx: refresh patches 2020-12-26 01:21:34 +08:00
AmadeusGhost
f67ced6ddf ipq40xx: remove duplicate patches 2020-12-26 00:10:15 +08:00
Tianling Shen
2181d2c5aa
luci-app-adbyby-plus: sync with upstream source 2020-12-26 00:10:00 +08:00
uamrws
434de6b382
luci-app-syncdial: fix mwan3 syncdial port settings
Co-authored-by: causal <causal@causaldeMacBook-Pro.local>
2020-12-26 00:02:21 +08:00
Chen Minqiang
b0ee96e014 ipq40xx: essedma Time-balanced scheduling
add script to adjust cpu affinity
essedma Time-balanced scheduling:
TX:
CPU:  |3          | |2          | |1          | |0          |
TX-Q: |15-14-13-12| |11-10-09-08| |07-06-05-04| |03-02-01-00|
          ___________|             |             |
          |  ______________________|             |
          |  |  _________________________________|
          |  |  |
TX-P: |15-11-07-03| |14-10-06-02| |13-09-05-01| |12-08-04-00|
TX-S: |---+--+--+-| |+-----+--+-| |+--+-----+-| |+--+--+----|
       |                |                |                |
RX:    |                |                |                |
CPU:  |3          | |   2       | |      1    | |         0 |
RX-Q: |07-06      | |05-04      | |03-02      | |01-00      |

Signed-off-by: Chen Minqiang <ptpt52@gmail.com>
2020-12-25 23:53:46 +08:00
Chen Minqiang
31f8780b0e ipq40xx: essedma: disable default vlan tagging
original idea by chunkeey

The essedma driver has its own unique take on VLAN management
and its configuration. In the original SDK, each VLAN is
assigned one virtual ethernet netdev.

However, this is non-standard. So, this patch does away
with the default_vlan_tag property the driver is using
and therefore forces the user to use the kernel's vlan
feature.

Unfortunately, this change will cause the essedma driver
to leak LAN<->WAN during LEDE bootup.

Signed-off-by: Chen Minqiang <ptpt52@gmail.com>
2020-12-25 23:51:54 +08:00
Yanase Yuki
d500eda5e2 ipq806x: add support for Qualcomm IPQ8062 SoC
This commit adds support for Qualcomm IPQ8062 SoC.
IPQ8062 is a lower clock variant of IPQ8064.

CPU and NSS clocks:
- CPU: 384 MHz - 1 GHz
- NSS: 110 MHz - 550 MHz

opp and l2 clock values are taken from WG2600HP3 GPL source code [1].

Due to a lack of devices, I didn't test the following features.
- SATA
- NAND flash memory controller
- SD
- USB
- GSBI2, GSBI7
- PCIE2
- GMAC0, GMAC3

Works properly:
- GSBI4 UART
- GSBI5 SPI
- GMAC1, GMAC2
- PCIE0, PCIE1
- MDIO0

Does not work properly:
- CPU SPC
  - This can cause a system hang. Same as IPQ8065.
    See 2336c2dbb1

[1] https://www.aterm.jp/function/wg2600hp3/appendix/opensource.html

Signed-off-by: Yanase Yuki <dev@zpc.sakura.ne.jp>
2020-12-25 23:41:42 +08:00
LGA1150
dd0389c62f ipq40xx: add ramoops dts 2020-12-25 23:40:26 +08:00