Page 113 of 139

Re: New kernels

Posted: Sun Mar 09, 2025 3:58 pm
by xeno74

Re: New kernels

Posted: Mon Mar 10, 2025 7:45 pm
by xeno74
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

Re: New kernels

Posted: Tue Mar 11, 2025 7:31 pm
by xeno74

Re: New kernels

Posted: Wed Mar 12, 2025 4:51 am
by Hypex
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).
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.

Re: New kernels

Posted: Wed Mar 12, 2025 3:19 pm
by musa
Hi
Kernel vmlinux-6.14_rc6 running with Adelie
Have a nice day

Image

Re: New kernels

Posted: Wed Mar 12, 2025 3:38 pm
by xeno74
musa wrote: Wed Mar 12, 2025 3:19 pm Hi
Kernel vmlinux-6.14_rc6 running with Adelie
Have a nice day
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

Posted: Wed Mar 12, 2025 4:32 pm
by Hypex
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 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.

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

Posted: Wed Mar 12, 2025 7:22 pm
by xeno74
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.
Thank you for the test and for publishing the cause of the problem.

Hypex wrote: Wed Mar 12, 2025 4:32 pm I also tested the 6.14 RC6 on MATE and it works fine.
Thanks a lot for testing! :-)

Re: New kernels

Posted: Wed Mar 12, 2025 9:38 pm
by xeno74
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:
  1. Code: Select all

    find /lib/modules/5.10.234-powerpc64-smp -name "*.xz" -exec unxz {} \;
  2. Code: Select all

    depmod
Image

Re: New kernels

Posted: Thu Mar 13, 2025 4:30 pm
by xeno74
For Zstd compressed kernel modules:

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 {} \;
Copy it to the old Linux distribution and execute "depmod".

Image