From c0f1dfa8bba77199d2eac0f1b5027974d05bdc8a Mon Sep 17 00:00:00 2001 From: Baozhu Zuo Date: Mon, 3 Aug 2020 09:07:51 +0800 Subject: [PATCH] Please use the 4.19 kernel first, 5.4 kernel support is still under development. --- README.md | 3 ++- install.sh | 2 +- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index dcd158e..4b59d07 100644 --- a/README.md +++ b/README.md @@ -9,7 +9,8 @@ Get the seeed voice card source code. and install all linux kernel drivers ```bash git clone https://github.com/respeaker/seeed-voicecard cd seeed-voicecard -sudo ./install.sh +#sudo ./install.sh +sudo ./install.sh --compat-kernel sudo reboot ``` It may probably happen that the driver won't compile with the latest kernel when raspbian rolls out new patches to the kernel. If so, please try `sudo ./install.sh --compat-kernel` which uses an older kernel but ensures that the driver can work. diff --git a/install.sh b/install.sh index 314dced..483f30d 100755 --- a/install.sh +++ b/install.sh @@ -1,7 +1,7 @@ #!/bin/bash #FORCE_KERNEL="1.20190925+1-1" -FORCE_KERNEL="1.20200212-1" +FORCE_KERNEL="1.20200601-1" if [[ $EUID -ne 0 ]]; then echo "This script must be run as root (use sudo)" 1>&2