We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Hi,
the check for raspberry model version does not work with compute module 4. I added the middle 2 lines to the service:
# Check for RPi model model=$(cat /proc/cpuinfo | grep 'Model' | awk '{print $5}') if [ "$model" == "Compute" ]; then model=$(cat /proc/cpuinfo | grep 'Model' | awk '{print $7}') fi echo "Detected RPi model $model".
Maybe you want add this too.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Hi,
the check for raspberry model version does not work with compute module 4. I added the middle 2 lines to the service:
Maybe you want add this too.
The text was updated successfully, but these errors were encountered: