Fix: the system should be configured for the legacy camera stack
Overview
When I ran raspistill -o test.jpg on Raspberry Pi Bullseye, I got the error in the title.
1 | $ raspistill -o test.jpg |
As clearly stated in the official documentation below, from Bullseye onwards only the libcamera-based stack is included.
https://www.raspberrypi.com/documentation/accessories/camera.html
Raspberry Pi OS images from Bullseye onwards will contain only the libcamera-based stack.
Use libcamera
1 | $ libcamera-still -o test.jpg |
Or you can enable support for the legacy camera stack
1 | sudo raspi-config |
That’s it.
I hope this helps.
Fix: the system should be configured for the legacy camera stack