package_changes.py: 25.12 Add switch driver for lantiq#1579
package_changes.py: 25.12 Add switch driver for lantiq#1579aparcar merged 1 commit intoopenwrt:mainfrom
Conversation
The Lantiq xRx200/xRx300/xRx330 switch driver is not compiled into the kernel image any more. Add this switch driver to the generated images if it is missing. This was changed in OpenWrt in: openwrt/openwrt@62bf028 Related: openwrt#1556 Fixes: openwrt/openwrt#21334
1a2ade3 to
7be0c5d
Compare
|
This would be more correct since it is a diff --git a/asu/package_changes.py b/asu/package_changes.py
index ca12ba8..905d784 100644
--- a/asu/package_changes.py
+++ b/asu/package_changes.py
@@ -130,8 +130,10 @@ def apply_package_changes(build_request: BuildRequest):
"solidrun_clearfog-pro",
}:
_add_if_missing("kmod-dsa-mv88e6xxx")
+ # Changes for https://github.com/openwrt/openwrt/commit/62bf0287326dcfab4596d5f4cad77cd9e7f8f03b
# Changes for https://github.com/openwrt/openwrt/commit/a18d95f35bd54ade908e8ec3158435859402552d
elif build_request.target == "lantiq/xrx200":
+ _add_if_missing("kmod-dsa-gswip")
if build_request.profile in {
"arcadyan_arv7519rw22",
"arcadyan_vgv7510kw22-brn",
@@ -168,8 +170,10 @@ def apply_package_changes(build_request: BuildRequest):
}:
_add_if_missing("xrx200-rev1.1-phy11g-firmware")
_add_if_missing("xrx200-rev1.2-phy11g-firmware")
+ # Changes for https://github.com/openwrt/openwrt/commit/62bf0287326dcfab4596d5f4cad77cd9e7f8f03b
# Changes for https://github.com/openwrt/openwrt/commit/a18d95f35bd54ade908e8ec3158435859402552d
elif build_request.target == "lantiq/xrx200_legacy":
+ _add_if_missing("kmod-dsa-gswip")
if build_request.profile in {
"alphanetworks_asl56026",
"netgear_dm200",
|
|
Good catch, there are more reports in the rc4 thread starting at https://forum.openwrt.org/t/openwrt-25-12-0-rc4-release-candidate/245939/165 Looks good to me. |
hauke
left a comment
There was a problem hiding this comment.
LGTM. Sorry I missed that change before.
Codecov Report❌ Patch coverage is
Additional details and impacted files@@ Coverage Diff @@
## main #1579 +/- ##
===========================================
+ Coverage 80.75% 91.61% +10.85%
===========================================
Files 15 16 +1
Lines 977 1741 +764
===========================================
+ Hits 789 1595 +806
+ Misses 188 146 -42 ☔ View full report in Codecov by Sentry. 🚀 New features to boost your workflow:
|
The Lantiq xRx200/xRx300/xRx330 switch driver is not compiled into the kernel image any more. Add this switch driver to the generated images if it is missing.
This was changed in OpenWrt in:
openwrt/openwrt@62bf028
Related: #1556
Fixes: openwrt/openwrt#21334