Skip to content

Commit 042bdc7

Browse files
committed
Ensure that all Intel CPUs are detected in the installer script
1 parent fb2a408 commit 042bdc7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

apt/install_software.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ APT_PACKAGES=(
3232
if [ "$(hostnamectl chassis)" = "laptop" ]; then
3333
APT_PACKAGES+=("tlp" "touchegg")
3434
fi
35-
if grep -wq "GenuineIntel" /proc/cpuinfo; then
35+
if grep -q "Intel" /proc/cpuinfo; then
3636
APT_PACKAGES+=("intel-media-va-driver" "intel-microcode" "intel-opencl-icd")
3737
fi
3838
if command -v nvidia-smi &> /dev/null; then

0 commit comments

Comments
 (0)