fix the system should be configured for the legacy camera stack
概要
Raspberry PI bullseye で raspistill -o test.jpg
実行時に掲題のエラーが発生しました。
1 | $ raspistill -o test.jpg |
以下公式にしっかりと bullseye 以降は libcamera ベースのスタックのみが含まれている、と記載されていました。
https://www.raspberrypi.com/documentation/accessories/camera.html
Raspberry Pi OS images from Bullseye onwards will contain only the libcamera-based stack.
libcamera を利用しよう
1 | $ libcamera-still -o test.jpg |
legacy camera stack をサポートしても良し
1 | sudo raspi-config |
以上
参考になれば幸いです。
fix the system should be configured for the legacy camera stack