Siduction Forum

Siduction Forum => Installation - Support => Topic started by: Teriarch on 2023/08/11, 16:09:45

Title: Virtualbox (7.0.10) modules won't compile with Kernel 6.4.10-1-siduction-amd64
Post by: Teriarch on 2023/08/11, 16:09:45
/usr/src/virtualbox-7.0.10/vboxnetflt/linux/VBoxNetFlt-linux.c line 50 reads:

#if RTLNX_VER_MIN(6,5,0)

But the current kernel is still 6.4. So you have to change the line into

#if RTLNX_VER_MIN(6,4,0)

in order to succeed. The kernel developers moved functions from
<linux/inetdevice.h> to <net/gso.h>, which could otherwise not be found.
Title: Re: Virtualbox (7.0.10) modules won't compile with Kernel 6.4.10-1-siduction-amd64
Post by: axt on 2023/08/12, 19:02:45
Bugreport #21796: unable to build kernel modules with Kernel 6.4.10 => fixed in svn (https://www.virtualbox.org/ticket/21796)
Title: Re: Virtualbox (7.0.10) modules won't compile with Kernel 6.4.10-1-siduction-amd64
Post by: DeepDayze on 2023/08/15, 19:24:31
That patch works for me as well and thanks for sharing this!  8)