🙄
Waveshareのディスプレイでwestonを動かす(Yocto)
WaveshareというAmazonで買える激安ディスプレイを販売しているメーカーがあります。今回このメーカーのディスプレイを使ってYoctoで作際したイメージのwestonを動かす際ハマったので備忘録として残します。
local.confの編集
今回使ったディスプレイがこちら。
↓のWikiにIf use the DSI0 interface, you need to add "dtoverlay=vc4-kms-dsi-7inch,dsi0" in the config.txt file
とあったので、build/conf/local.conf
に以下のように追記。
RPI_EXTRA_CONFIG = " \
dtoverlay=vc4-kms-dsi-7inch,dsi0 \
"
あとはcore-image-westonをビルド。
bitbake core-image-weston
これで問題なく動作しました。
Discussion