Posts by chewitt
-
-
I would invest in a NAS box that sits in the network with a physical cable connection to the playback device. Then you can keep the current "does everything I need it to do" playback device; and in future change that device without storage features dictating the hardware options. The initial up-front expense is paid back over time in lower effort and cheaper future updates.
-
The general advice for HDMI issues is to physically disconnect everything and leave powered off for 10-mins, then reconnect cables and see if anything fixed itself (as it often does).
The getedid script solves a single and specific problem; the TV not being powered on before the RPi starts. That's the only issue it solves. It does not solve CEC problems. It does not solve any other HDMI problems. Do not use it, unless you have that issue.
-
My understanding is that I just have to add this as package.mk to packages/linux-driver-addons and it will be picked up during make image?
Not quite. Create the package folder and mt76 package.mk under packages/linux-drivers and test built the driver to ensure it compiles with e.g. PROJECT=Generic ARCH=x86_64 scripts/build mt76 then add the package to ADDITIONAL_PACKAGES in an appropriate 'options' file; either distro, project, or device level and the package will be built as part of a normal image build. Here's an example package.mk (for a realtek wifi driver): https://github.com/chewitt/LibreE…dd77d9cfa1d713e - no idea if that would work as-is or needs changes.
The easier option would be to enable CONFIG_MT7925E=m in the kernel defconfig, as it's a one-line change and then you're using an upstream supported in-kernel driver. Just edit the relevant defconfig and rebuilt the image; the defconfig change will be detected and the kernel will be rebuilt automatically. NB: I've no idea if the driver needs firmware, but that can be manually added if needed, or you can edit the firmware pick file, either at project level or the x86_64 default one under the kernel-firmware package.
-
Quartz64B doesn't find boot media on mmc nodes; probably because there is no eMMC module and for some reason the SD card is not detected (and shows a reset failure). I've no idea what the issue is, but I'll have a look at u-boot sources later.
OrangePi 3B is booting vendor u-boot (2017.09-orangepi) so you need to erase that from SPI or wherever it's been stored.
-
Yasai-san Focus on reporting non-working devices (working ones are not interesting). Provide UART log output because it shows where the problem is. Your list is confusing because it shows Odroid-M1 in both working and not-tested. It shows Quartz64-A in both working and non-working.
NB: Rock3C, Rock4D, Rock5B are all working fine (tested by me).
-
-
Please provide a full debug log.How to post a log (wiki)1. Enable debugging in Settings>System Settings>Logging2. Restart Kodi3. Replicate the problem4. Generate a log URL (do not post/upload logs to the forum)
use "Settings > LibreELEC > System > Paste system logs" or run "pastekodi" over SSH, then post the URL link -
RK356X images in my share now have a working OSD in Kodi and what appears to be working HEVC support. RK3566/3568 appear to be a bit forgotten; the hardware is largely derivative of RK3588 so e.g. the same vdpu381 decoder can be added easily, but as these chips are not targetted by any funded Collabora development, they aren't being tested (by Collabora) with numerous in-flight patch series. Hopefully LE crowdtesting will fill some gaps. I'm also noticing that MPEG2 support (hantro) has issues with some of the test media that I have, but I haven't been able to spot patterns.
-
I can't find yet which commit affects it because v2025.10-rc1 has 1025 commits from 2025.07.
RK3588 boards should be usable without the additional patches that LE is using (which are mostly for 3576 support) so clone u-boot sources and start a git bisect to track success/failure, but use the githashes (and no patches) in the LE buildsystem. No matter how large the number of commits difference between the start points is, bisect will find the breaking commit within 8-10 moves, and if the rest of the LE image is static this is probably no more than an hour of effort. NB: I normally edit scripts/uboot_helper so I don't waste time building images for hardware that I won't be testing with.
-
what can you recomend please
We recommend you find a forum that allows discussions on "which is the best VPN provider" .. because this isn't one.
-
Do a force refresh of the repo from the add-on browser.
-
It's interesting that it reports invalid key, because it should report invalid passphrase. Otherwise it's not the eureka moment we are seeking. The \ character is not an allowed character for passphrases and is thus rejected, end of story.
The 'invalid-key' other folks are seeing is a crypto key being exchanged between client and access-point, and it's deep in the guts of the negotiations needed for some radio features. Weak signals tend to surface it more, which suggests it's related to error handling (or not-handling) code somewhere in the wireless stack. It also shows up with Broadcom WiFi hardware and WPA3 which is not fully supported in current kernel drivers for that hardware; although we've applied mitigations for that now.
I've removed "[SOLVED]" from the thread title because I don't want the noise of others pointing out that "there's a solution you're not telling us about" and/or that your solution doesn't work for them.
-
-
LE Settings > Services > Samba > enable "Use Samba Password Authentication" and then change the libreelec users' default and well known libreelec password. Windows should be happy with that and there's no need to disable any security settings that MS will inevitably force back to 'on' again in some future update.
-
-
Yasai-san all three boards are trying to boot a prehistoric vendor u-boot, e.g. ^
I'd guess they have it installed to SPI flash, so erase that and the boards should find upstream u-boot on the SD card and boot.
-
Amlogic u-boot uses a proprietary partition scheme with Android boxes and this is not supported by any upstream disk/file tools and we aren’t interested in adding the downstream stuff in LE, so you are limited to booting from an SD card or USB and we need to hook the boot process to load the LE kernel etc. SBC boards like the M5 are supported in upstream u-boot so we can support install to eMMC on those via a two step process (boot from SD, then download and write the LE image to eMMC).
If your box will boot upstream u-boot created from the boot FIP sources of another known (supported) device then you can engineer upstream u-boot support, but this requires experimentation that starts with erasing eMMC so you need to be familiar with Amlogic recovery tools and have the original ROM image and have a serial UART cable wired up to see what’s going on during boot. It’s not something that we support or guide users through because most users don’t have the tools or aptitude for the task. Self-recovery when an incompatible u-boot has been written and you need to short pins on chips to bypass it is not for the faint hearted.