Please use the 4.19 kernel first, 5.4 kernel support is still under development.

This commit is contained in:
Baozhu Zuo 2020-08-03 09:07:51 +08:00
parent 6b4133b5f0
commit c0f1dfa8bb
2 changed files with 3 additions and 2 deletions

View file

@ -9,7 +9,8 @@ Get the seeed voice card source code. and install all linux kernel drivers
```bash ```bash
git clone https://github.com/respeaker/seeed-voicecard git clone https://github.com/respeaker/seeed-voicecard
cd seeed-voicecard cd seeed-voicecard
sudo ./install.sh #sudo ./install.sh
sudo ./install.sh --compat-kernel
sudo reboot 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. 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.

View file

@ -1,7 +1,7 @@
#!/bin/bash #!/bin/bash
#FORCE_KERNEL="1.20190925+1-1" #FORCE_KERNEL="1.20190925+1-1"
FORCE_KERNEL="1.20200212-1" FORCE_KERNEL="1.20200601-1"
if [[ $EUID -ne 0 ]]; then if [[ $EUID -ne 0 ]]; then
echo "This script must be run as root (use sudo)" 1>&2 echo "This script must be run as root (use sudo)" 1>&2