8821cu-20210916/dkms-make.sh

24 lines
654 B
Bash
Raw Normal View History

#!/bin/sh
2023-01-14 03:59:06 +00:00
2023-09-25 15:04:26 +00:00
# Warning: Do not run this script in a terminal. It is designed to be
# run from another script.
2023-01-14 03:59:06 +00:00
# SMEM needs to be set here if dkms build is not initiated by install-driver.sh
2023-11-25 21:25:49 +00:00
SMEM=$(LC_ALL=C free | awk '/Mem:/ { print $2 }')
2023-01-14 03:59:06 +00:00
2023-01-17 15:49:57 +00:00
# sproc needs to be set here if dkms build is not initiated by install-driver.sh
sproc=$(nproc)
2023-01-14 03:59:06 +00:00
2023-01-26 17:52:27 +00:00
# avoid Out of Memory condition in low-RAM systems by limiting core usage
if [ "$sproc" -gt 1 ]; then
if [ "$SMEM" -lt 1400000 ]; then
2023-01-17 15:49:57 +00:00
sproc=2
2023-01-14 03:59:06 +00:00
fi
2023-09-25 15:04:26 +00:00
if [ "$SMEM" -lt 700000 ]; then
sproc=1
fi
2023-01-14 03:59:06 +00:00
fi
kernelver=${kernelver:-$(uname -r)}
2023-01-17 15:49:57 +00:00
make "-j$sproc" "KVER=$kernelver" "KSRC=/lib/modules/$kernelver/build"