Hello,
I'd love tho get help regarding new rpi kernel.
On my RPi4 I recently got an update to 6.12.1-1 of linux-rpi package and after reboot, k3s seems unable to see cgroups, outputting:
```
Nov 29 16:10:47 rpi4-64-2 k3s[1267]: time="2024-11-29T16:10:47+01:00" level=fatal msg="failed to find memory cgroup (v2)"
Nov 29 16:10:47 rpi4-64-2 systemd[1]: k3s.service: Main process exited, code=exited, status=1/FAILURE
Nov 29 16:10:47 rpi4-64-2 systemd[1]: k3s.service: Failed with result 'exit-code'.
Nov 29 16:10:47 rpi4-64-2 systemd[1]: Failed to start Lightweight Kubernetes.
```
cmdline should be set up correctly:
```
$ cat /boot/cmdline.txt
root=/dev/sda2 rw rootwait console=serial0,115200 console=tty1 fsck.repair=yes usb-storage.quirks=152d:0576:u cgroup_memory=1 cgroup_enable=memory
```
/proc/cgroups is still outputting the same thing:
```
$ cat /proc/cgroups
#subsys_name hierarchy num_cgroups enabled
cpuset 0 45 1
cpu 0 45 1
cpuacct 0 45 1
blkio 0 45 1
devices 0 45 1
freezer 0 45 1
net_cls 0 45 1
perf_event 0 45 1
net_prio 0 45 1
pids 0 45 1
```
I also tried to copy the cmdline.txt into /boot/firmware/ as that's where it is in RaspiOS, but it makes no difference.
Downgrading to linux-rpi-6.6.62-1 fixes everything, but that's of course not a permanent solution.
Any input is welcomed
Thanks