mirror of
https://github.com/morrownr/8821cu-20210916.git
synced 2024-11-05 11:00:36 +00:00
20 lines
507 B
Bash
Executable File
20 lines
507 B
Bash
Executable File
#!/bin/sh
|
|
|
|
# SMEM needs to be set here if dkms build is not initiated by install-driver.sh
|
|
SMEM=$(LANG=C free | awk '/Mem:/ { print $2 }')
|
|
|
|
# sproc needs to be set here if dkms build is not initiated by install-driver.sh
|
|
sproc=$(nproc)
|
|
|
|
# Avoid Out of Memory condition in low-RAM systems by limiting core usage.
|
|
if [ "$sproc" -gt 1 ]; then
|
|
if [ "$SMEM" -lt 1400000 ]; then
|
|
sproc=2
|
|
fi
|
|
fi
|
|
|
|
kernelver=${kernelver:-$(uname -r)}
|
|
make "-j$sproc" "KVER=$kernelver" "KSRC=/lib/modules/$kernelver/build"
|
|
|
|
exit 0
|