- Linux 6.14-rc6 Released With More Panther Lake Additions, AMD Microcode Signing Fix -- phoronix.com
- 6.14-rc6 release announcement
- USB fixes (including Renesas controller fixes)
- Amiga FFS fixes
- XFS fixes
- BTRFS fixes
- exFAT fixes
- Devicetree fix
- NVMe fixes
- Networking fixes
- DRM fixes (including Radeon and Bochs VGA fixes (QEMU: -device VGA,vgamem_mb=256))
- Sound fixes
New kernels
Re: New kernels
New for the RC6:
Re: New kernels
Hi All,
Here is the RC6 of kernel 6.14 for the X1000 and X5000.
Download and further information: github.com
Please test the kernels.
Thanks,
Christian
Here is the RC6 of kernel 6.14 for the X1000 and X5000.
Download and further information: github.com
Please test the kernels.
Thanks,
Christian
Re: New kernels
I also tested 6.12.17 with my Xenial. It fails to boot. There is a message about needing to do a manual fsck and failing to open a libpre3 or something before dropping to initramfs prompt.xeno74 wrote: Sun Mar 09, 2025 8:27 am I think the new zstd compressed kernel modules are the problem. I will remove the support for zstd compressed kernel modules from the next kernel 6.12 (6.12.18).
Re: New kernels
Thanks a lot for testing!

It would be good to know why Debian PPC64’s systemd doesn’t work with the kernel 6.14.

Unfortunately I don’t have Debian PPC64 on my X1000.
Re: New kernels
I just tested it on Debian 64 and can confirm it does crash. The crash looks similar to the apt crash and what other binaries are unstable. I'm not sure where but I read of some other component crashing because it was compiled as native on a modern POWER machine, because the compiler flags were messed up, and didn't cross compile to G5 ppc64 like it should have.xeno74 wrote: Wed Mar 12, 2025 3:38 pm It would be good to know why Debian PPC64’s systemd doesn’t work with the kernel 6.14.
Unfortunately I don’t have Debian PPC64 on my X1000.
I also tested the 6.14 RC6 on MATE and it works fine. Though I kept seeing modules dep errors on boot. I'm sure I installed the modules and I can see both text and binary modules dep file so I don't know why it's not there. It actually happens a lot. I check the dep files are there which leaves me with a

Re: New kernels
Thank you for the test and for publishing the cause of the problem.Hypex wrote: Wed Mar 12, 2025 4:32 pm I just tested it on Debian 64 and can confirm it does crash. The crash looks similar to the apt crash and what other binaries are unstable. I'm not sure where but I read of some other component crashing because it was compiled as native on a modern POWER machine, because the compiler flags were messed up, and didn't cross compile to G5 ppc64 like it should have.
Thanks a lot for testing!

Re: New kernels
Workaround if you have issues with compressed kernel modules:
For example for the stable long-term kernel 5.10.234 with the MATE PowerPC Remix 2017:

For example for the stable long-term kernel 5.10.234 with the MATE PowerPC Remix 2017:
-
Code: Select all
find /lib/modules/5.10.234-powerpc64-smp -name "*.xz" -exec unxz {} \;
-
Code: Select all
depmod

Re: New kernels
For Zstd compressed kernel modules:
On a new Linux distribution:
Copy it to the old Linux distribution and execute "depmod".

On a new Linux distribution:
Code: Select all
find ./6.12.17-powerpc64-smp -name "*.zst" -exec zstd -d {} \;
Code: Select all
find ./6.12.17-powerpc64-smp -name "*.zst" -exec rm {} \;
