Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

2021-8-5 #3

Merged
merged 852 commits into from
Dec 16, 2021
Merged

2021-8-5 #3

merged 852 commits into from
Dec 16, 2021

Conversation

allgreenL
Copy link
Owner

Q:你知道这是pull request吗?(使用 "x" 选择)

  • [X ] 我知道

lxl6125 and others added 30 commits September 24, 2021 22:04
* qbittorrent: bump to v4.3.8

* qBittorrent-static: bump to v4.3.8_v1.2.14
* iproute2: bump to 5.13

Drop patch 185-libbpf-add-limits-h merged upstream
Update patch 170-ip_tiny
Update patch 130-no_netem_tpic_dcb...

Signed-off-by: Ansuel Smith <[email protected]>

* iproute2: m_xt.so depends on dynsyms.list

When doing parallel build on a fast machine with bottleneck in i/o,
m_xt.so may start linking faster than dynsyms.list gets populated,
resulting in error:

ld:dynsyms.list:0: syntax error in dynamic list

Fix this by adding dynsyms.list as make dependency to m_xt.so
Described also here:
https://bugs.openwrt.org/index.php?do=details&task_id=3353

Change from v1:
- add dynsysms.list dependancy only when shared libs are enabled

Signed-off-by: Roman Yeryomin <[email protected]>
Fixes: FS#3353

* iproute2: update to 5.14

Update iproute2 to latest stable 5.14; for the changes see https://lwn.net/Articles/867940/

Refresh patches

Signed-off-by: Hans Dedecker <[email protected]>

Co-authored-by: Ansuel Smith <[email protected]>
Co-authored-by: Roman Yeryomin <[email protected]>
Co-authored-by: Hans Dedecker <[email protected]>
* base-files: reduce `sed` calls

The `sed`-script shouldn't be called multiple times, especially not with
the same files.

This commit merges all files together in a single `sed`-script call.

Signed-off-by: Paul Spooren <[email protected]>

* base-files: reduce number of `mkdir` calls

The `mkdir` commands supports passing multiple arguments to batch create
multiple folders, instead of calling the tool every single time.

If the creation of one of the folders fails, all other folder are still
created and therefore doesn't change the error handling.

Also stop creating `/etc/` explicitly after subfolders of `/etc/` were
already created.

Signed-off-by: Paul Spooren <[email protected]>

Co-authored-by: Paul Spooren <[email protected]>
* hostapd: let netifd set bridge port attributes for snooping

Avoids race conditions on bridge member add/remove

Signed-off-by: Felix Fietkau <[email protected]>

* hostapd: fix segfault when deinit mesh ifaces

In hostapd_ubus_add_bss(), ubus objects are not registered for mesh
interfaces. This provokes a segfault when accessing the ubus object in
mesh deinit.

This commit adds the same condition to hostapd_ubus_free_bss() for
discarding those mesh interfaces.

Signed-off-by: Jesus Fernandez Manzano <[email protected]>

Co-authored-by: Felix Fietkau <[email protected]>
Co-authored-by: Jesus Fernandez Manzano <[email protected]>
Co-authored-by: Tianling Shen <[email protected]>
In rockchip's proprietary ddrloader, the idbloader can be general and
no longer limited to the specific device.
This matches the behavior in arm-trusted-firmware-rockchip-vendor.

Fixes: dd71a38 ("uboot-rockchip: update package")

Signed-off-by: Tianling Shen <[email protected]>
The dependencies in the repo doesn't meet the minimum requirements for
upgrading to the latest aMule version.

This reverts commit dc43ea2.

Signed-off-by: Tianling Shen <[email protected]>
This reverts commit 0088bb1.
Obviously the author put it up without any testing, so just
remove it. Closed: #7958, #7959
Remove use of DEVICE_TITLE in favor of the
DEVICE_VENDOR and DEVICE_MODEL as used by
all other targets.

Signed-off-by: Moritz Warning <[email protected]>

Co-authored-by: Moritz Warning <[email protected]>
Remove use of DEVICE_TITLE in favor of the
DEVICE_VENDOR and DEVICE_MODEL as used by
all other targets.

Signed-off-by: Moritz Warning <[email protected]>

Co-authored-by: Moritz Warning <[email protected]>
lxhao61 and others added 29 commits December 5, 2021 18:22
…ort, change switch to swconfig from DSA. (#8391)"

This reverts commit 83b6469. Since
it is exactly the same, there is no need to add as a new device.
Add the missing part, fixes: #8391
Signed-off-by: aakkll <[email protected]>

Co-authored-by: Enrico Mioso <[email protected]>
Signed-off-by: aakkll <[email protected]>

Co-authored-by: Oldřich Jedlička <[email protected]>
This add the mt7620-nand driver and enable nand ubifs for
mt7620 subtarget, closed: #8097, #8402, #8405

Fixes: 3625a73 ("ramips: switch to kernel 5.10")

Signed-off-by: Chen Minqiang <[email protected]>
修复丢失的lan配置
开启RTL8125B的多队列支持和关闭ASPM
…#8435)

I updated the link for downloading Windows client to download the latest
currently available version instead of using beta version, which is not
good to use in production.

Also, the macOS link led to the OpenVPN server, which was wrong. It should
be a client. It was updated to the latest version as well.
Revert the SDC "CLK_SET_RATE_GATE" changes to the SDC clock regulator
structures.

See https://elinux.org/images/b/b8/Elc2013_Clement.pdf
> if ((clk->flags & CLK_SET_RATE_GATE) && clk->prepare_count) {
>
> For this particular clock, setting its rate is possible only if the
> clock is ungated (not yet prepared)

This fixes the MMC failing to initialize on newer ZyXEL NBG6817
hardware revisions with Kingston MMC.  Older revisions should
hopefully be unaffected.

Check MMC hardware details with:
cd /sys/block/mmcblk0/device/ && \
  tail -v cid date name manfid fwrev hwrev oemid rev

Known problematic MMC names (broken before this commit):
* M62704 (dated 12/2018) via myself
* M62704 (dated 11/2018) via Drake Stefani

Known unaffected MMC names (already working without this commit):
* S10004 (dated 12/2015) via slh

Now, the MMC properly initializes and later switches to high speed.

Thanks to:
* Ansuel for maintaining/help with the IPQ806x platform, kernel code
* slh for additional debugging and suggestions
* dwfreed for confirming newer MMC details, clock frequency
* robimarko for device driver debug printing help, clock debugging
* Drake for testing and confirmation with their own newer NBG6817
...and anyone else I missed!

Signed-off-by: Shane Synan <[email protected]>
Tested-by: Shane Synan <[email protected]>
This reverts commit 647505e.
This is incorrect on luci 18.06.

Reported-by: GitHub user flyhong666
* CI: fix alternatives for my.cnf problem

* CI: expand more compilation space
@allgreenL allgreenL merged commit b13980f into allgreenL:master Dec 16, 2021
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.