okay I understand now. developer moved kmod location.
1 Like
apashi
December 3, 2024, 9:18am
22
I installed 24.10.0 RC1 yesterday on my Asus Ac85p router, but I encountered some error when trying to update some Software packets:
Is there anything I can do to fix those errors?
dannil
December 3, 2024, 9:26am
23
It's linked previously in the thread.
opened 12:31PM - 02 Dec 24 UTC
target/x86
bug
Official Image
release/24.10
### Describe the bug
This bug potentially affects **ALL** future point/tagged r… eleases.
Kernel modules are now put only in `kmods` and not in `packages` under `targets`, which is nice.
We can compare output from different branches and point releases:
- https://downloads.openwrt.org/snapshots/targets/x86/64/packages/
- https://downloads.openwrt.org/releases/24.10-SNAPSHOT/targets/x86/64/packages/
- https://downloads.openwrt.org/releases/24.10.0-rc1/targets/x86/64/packages/
- https://downloads.openwrt.org/releases/23.05-SNAPSHOT/targets/x86/64/packages/
- https://downloads.openwrt.org/releases/23.05.5/targets/x86/64/packages/
However, `FeedSourcesAppendOPKG`, `FeedSourcesAppendAPK`, and `FeedSourcesAppend` only append `kmods` feed to
1. `/etc/opkg/distfeeds.conf` (OPKG)
2. `/etc/apk/repositories.d/distfeeds.list` (APK)
3. ImageBuilder `repositories.conf` (OPKG)
4. ImageBuilder `repositories` (APK)
for snapshot builds:
- https://github.com/openwrt/openwrt/blob/main/include/feeds.mk#L35
- https://github.com/openwrt/openwrt/blob/main/include/feeds.mk#L49
- https://github.com/openwrt/openwrt/blob/openwrt-24.10/include/feeds.mk#L35
- https://github.com/openwrt/openwrt/blob/openwrt-24.10/include/feeds.mk#L49
- https://github.com/openwrt/openwrt/blob/openwrt-23.05/include/feeds.mk#L31
Thus new point releases like 24.10.0-rc1 won't be able to find kernel modules from downloads.openwrt.org.
### OpenWrt version
r28158-d276b4c91a
### OpenWrt release
24.10.0-rc1
### OpenWrt target/subtarget
x86/64
### Device
QEMU Standard PC (Q35 + ICH9, 2009)
### Image kind
Official downloaded image
### Steps to reproduce
- download 24.10.0-rc1 ImageBuilder: https://downloads.openwrt.org/releases/24.10.0-rc1/targets/x86/64/openwrt-imagebuilder-24.10.0-rc1-x86-64.Linux-x86_64.tar.zst
- build image: `make image PROFILE=generic`
### Actual behaviour
```log
Collected errors:
* pkg_hash_check_unresolved: cannot find dependency kmod-nf-conntrack-netlink for libnetfilter-conntrack3
* pkg_hash_fetch_best_installation_candidate: Packages for libnetfilter-conntrack3 found, but incompatible with the architectures configured
* pkg_hash_check_unresolved: cannot find dependency kmod-nft-core for nftables-json
* pkg_hash_fetch_best_installation_candidate: Packages for nftables-json found, but incompatible with the architectures configured
* pkg_hash_check_unresolved: cannot find dependency kmod-nft-core for firewall4
* pkg_hash_check_unresolved: cannot find dependency kmod-nft-fib for firewall4
* pkg_hash_check_unresolved: cannot find dependency kmod-nft-offload for firewall4
* pkg_hash_check_unresolved: cannot find dependency kmod-nft-nat for firewall4
* pkg_hash_fetch_best_installation_candidate: Packages for firewall4 found, but incompatible with the architectures configured
* opkg_install_cmd: Cannot install package firewall4.
* opkg_install_cmd: Cannot install package kmod-amazon-ena.
* opkg_install_cmd: Cannot install package kmod-amd-xgbe.
* opkg_install_cmd: Cannot install package kmod-bnx2.
* opkg_install_cmd: Cannot install package kmod-button-hotplug.
* opkg_install_cmd: Cannot install package kmod-dwmac-intel.
* opkg_install_cmd: Cannot install package kmod-e1000.
* opkg_install_cmd: Cannot install package kmod-e1000e.
* opkg_install_cmd: Cannot install package kmod-forcedeth.
* opkg_install_cmd: Cannot install package kmod-fs-vfat.
* opkg_install_cmd: Cannot install package kmod-igb.
* opkg_install_cmd: Cannot install package kmod-igc.
* opkg_install_cmd: Cannot install package kmod-ixgbe.
* opkg_install_cmd: Cannot install package kmod-nft-offload.
* opkg_install_cmd: Cannot install package kmod-r8169.
* opkg_install_cmd: Cannot install package kmod-tg3.
* pkg_hash_check_unresolved: cannot find dependency kmod-nft-core for nftables-nojson
* satisfy_dependencies_for: Cannot satisfy the following dependencies for nftables-json:
* kmod-nft-core
* opkg_install_cmd: Cannot install package nftables.
* pkg_hash_check_unresolved: cannot find dependency kmod-ppp for ppp
* pkg_hash_fetch_best_installation_candidate: Packages for ppp found, but incompatible with the architectures configured
* opkg_install_cmd: Cannot install package ppp.
* pkg_hash_check_unresolved: cannot find dependency kmod-pppoe for ppp-mod-pppoe
* pkg_hash_fetch_best_installation_candidate: Packages for ppp-mod-pppoe found, but incompatible with the architectures configured
* opkg_install_cmd: Cannot install package ppp-mod-pppoe.
make[2]: *** [Makefile:228: package_install] Error 255
make[1]: *** [Makefile:155: _call_image] Error 2
make: *** [Makefile:331: image] Error 2
```
### Expected behaviour
Successful build
### Additional info
_No response_
### Diffconfig
_No response_
### Terms
- [X] I am reporting an issue for OpenWrt, not an unsupported fork.
2 Likes
border
December 3, 2024, 10:57am
24
You are already unknowingly hosting a RSS feed. Among other feeds there is also a RSS feed for every category automatically created by Discourse.
The RSS feed for this category would be:
Announcements of new releases and security updates will be made here by OpenWrt staff members.
This RSS feed is already optimal.
The - is a substitute for the slug. However the slug is ignored in favor of the ID. So it just helps to identify the URL.
apashi
December 3, 2024, 2:22pm
25
Thanks a lot @dannil .
But I don't know exactly how to fix it!
dannil
December 3, 2024, 2:30pm
26
You can try to edit your distfeeds.conf as mentioned in https://github.com/openwrt/openwrt/issues/17146#issuecomment-2513423414 and see if that fixes it, but it'll need to be a specific URL and vermagic for your device compared to the URL in the linked comment.
Otherwise if you don't feel comfortable doing that there'll be an upcoming 24.10-rc2 some time this week I guess (it'll get tagged today according to https://github.com/openwrt/openwrt/issues/17146#issuecomment-2514324745 ) if you just want to wait for that one.
4 Likes
apashi
December 3, 2024, 2:49pm
27
I am ok waiting for RC2 version!
Thanks a lot for your support.
2 Likes
Working normally on Netgear WNDR4300v1 I did notice that unlike 23.05.5 right after startup on 23.05.5 the free ram is 60MB and on 24.10.0-rc1 the free ram is 56MB
Congratulations for this major release. It's a major goal considering the kernel bump and all it involves.
Some Linksys ipq40xx devices (such as MR8300) require a tweak to install 24.10. It's the same that is previouly described in 23.05 release notes. Please copy/paste theses infos otherwise users trying to install directly 24.10 may brick their device.
Thank you.
1 Like
dsouza
December 3, 2024, 4:32pm
30
hauke:
(...)
User of the Linksys E8450 aka. Belkin RT3200 running OpenWrt 23.05 or earlier will need to run installer version v1.1.3 or later in order to reorganize the UBI layout for the 24.10 release.
(...)
@hauke the Xiaomi AX3200/Redmi AX6S also had UBI layout changed as part of this commit .
This way a sysupgrade from 23.05.x to 24.10.0-rc1 is not possible. This device's wiki already has instructions about how to manually update. Perhaps this should be added to the release notes as well.
Lynx
December 3, 2024, 5:15pm
31
Also a bricking risk? I always feel bricking risks should be flagged!
1 Like
dsouza
December 3, 2024, 5:45pm
32
I believe so, but users will need to "force" sysupgrade to get a brick, and the warning is very clear that the image is not compatible, so it will need a deliberate action to get a brick.
ppmm
December 3, 2024, 7:56pm
33
How's the throughput over WAN? I notice mine is lowered to 300mbps top in 23. Perhaps 24 is even lower.
Lynx
December 3, 2024, 8:21pm
34
Hehe - that’s the spirit! Reminds me about how my old boss - ever the optimist - used to like to tell me about the notion of progress, and I would respond by asking him about the destination on the basis that absent a clear destination, we can’t be sure that any progress is even being made - is it simply a dog chasing its own tail?
As my ISP's connection is only 100mbps I don't think I'll be able to test the higher speeds.
Two issues I had with x86/64 for this release:
Missing kmods (known issue as described by https://github.com/openwrt/openwrt/issues/17146#issuecomment-2513423414 )
My LAN interface only negotiated 100Mb/s, despite supporting (and auto negotiating) 1000Mb/s on 23.05.5. Reported at https://github.com/openwrt/openwrt/issues/17154 .
haval
December 3, 2024, 10:06pm
37
Is this compatible with BT HomeHub 5 Type A?
hauke
December 3, 2024, 11:02pm
38
OpenWrt 24.10.0-rc2 is currently building. It contains a fix to allow installing kernel packages again.
17 Likes
For Netgear R7800 (ipq806x), this release switches to DSA, so a sysupgrade is not possible. I suggest the release notes should mention all the platforms that were on swconfig in 23.05 and now are on DSA.
3 Likes
Hello
Is the version 24.10 not going to solve the problems of the BT HomeHub 5A router like the previous version 23.05? Because the problem was supposed to be solved in version 23.05, but unfortunately, after 5 versions, it has not been solved until now.
[ Details ]
lantiq/xrx200 target shows error messages in DSA switch configuration of the integrated GSWIP switch. (see: https://github.com/openwrt/openwrt/pull/13