From 2b08ce80eb5f9921ee3a3a8b85c9c43e3eb53584 Mon Sep 17 00:00:00 2001 From: spl Date: Tue, 28 Feb 2017 09:51:59 +0000 Subject: [PATCH] Added detection of Pi 0 W boards --- raspi-config | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/raspi-config b/raspi-config index 01692eb..4c51fc7 100755 --- a/raspi-config +++ b/raspi-config @@ -35,7 +35,7 @@ is_pitwo() { } is_pizero() { - grep -q "^Revision\s*:\s*[ 123][0-9a-fA-F][0-9a-fA-F][0-9a-fA-F]09[0-9a-fA-F]$" /proc/cpuinfo + grep -q "^Revision\s*:\s*[ 123][0-9a-fA-F][0-9a-fA-F][0-9a-fA-F]0[9cC][0-9a-fA-F]$" /proc/cpuinfo return $? }