6.19.0 20260209 o2 clang 7.1.2-7.2.x
- WILL NOT WORK ON 6.11 or 6.12 UNRAID only on 7.1.2-7.2.x
- includes full firmware from
- https://git.kernel.org/pub/scm/linux/kernel/git/firmware/linux-firmware.git/
- https://github.com/LibreELEC/dvb-firmware - amd vendor-reset module
- enable Wake-On-Lan for Killer network (https://github.com/AndiWeiss/alx-wol/)
- add bluetooth drivers
- add google coral AI driver (gasket and apex) (https://github.com/google/gasket-driver)
- add android binder driver
- added ugreen led driver (https://github.com/miskcoo/ugreen_dx4600_leds_controller)
- WORKING ZFS GIT
- add Nuvoton NCT6687-R kernel module (https://github.com/Fred78290/nct6687d)
- clang21 LTO thin built
- zram support
- AI accelerators support
- add zenpower(https://github.com/Artanejp/zenpower-plus)(add "module_blacklist=k10temp" to enable in cmdline)
- add xdna amd npu driver
Full Changelog: https://github.com/thor2002ro/unraid_kernel/commits/20260209
start zram with something like in the go file
# Get total RAM in bytes
total_ram=$(free -b | grep Mem: | awk '{print $2}')
# Calculate 25% of RAM
zram_size=$((total_ram / 4))
modprobe zram
sleep 1
# Create a zram device with 25% of RAM
zramctl --find --size ${zram_size} --algorithm lz4 && \
mkswap -L zram0 /dev/zram0 && \
swapon -p 100 /dev/zram0