1
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 1 year has passed since last update.

【yocto】各パッケージのバージョンを確認する方法

Posted at

はじめに

  • bitbakeで生成される各パッケージ(レシピ)のバージョンを確認したい人向け
  • tmpの下のログや生成物からバージョンを確認してもよいが、bitbakeコマンドでサクッと確認した人向け

方法

bitbake -s recipe-name

  • bitbake前準備
takeshi@X250:~/yocto/poky$ source oe-init-build-env 
(略)
  • bitbake -sを実行することで、パッケージとバージョンの一覧が表示される
takeshi@X250:~/yocto/poky/build$ bitbake -s core-image-minimal
(略)
xz                                                  :5.2.4-r0                          
xz-native                                           :5.2.4-r0                          
zip                                                   :3.0-r2                          
zip-native                                            :3.0-r2                          
zlib                                               :1.2.11-r0                          
zlib-native                                        :1.2.11-r0                          

Summary: There was 1 WARNING message shown.
1
1
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?