You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Compiling with dkms takes quite long, because just one process is being used.
man dkms says, it calls make with -j"$(nproc)". But that somehow does not seem to work. Not even explicitly calling dkms install -j 2 rtl8192eu/1.0`
makes it use more than one process.
Workaround:
In dkms.conf change MAKE= line to: MAKE="'make' -j"$(nproc)" all KVER=${kernelver}"
The text was updated successfully, but these errors were encountered:
Compiling with dkms takes quite long, because just one process is being used.
man dkms
says, it calls make with-j"$(nproc)". But that somehow does not seem to work. Not even explicitly calling
dkms install -j 2 rtl8192eu/1.0`makes it use more than one process.
Workaround:
In
dkms.conf
changeMAKE=
line to:MAKE="'make' -j"$(nproc)" all KVER=${kernelver}"
The text was updated successfully, but these errors were encountered: