2017-11-19 6 views
-3

最近誰かがbitbake-envユーティリティを使ってみましたか?私はそれがインストールされて表示されていない最近誰かがbitbake-envユーティリティを使ってみましたか?

[[email protected] build]$ which bitbake 
~/YOCTO/oe_core_embedded/poky/bitbake/bin/bitbake 
[[email protected] build]$ which bitbake-env 
/usr/bin/which: no bitbake-env in (/home/user/YOCTO/oe_core_embedded/poky/scripts:/home/user/YOCTO/oe_core_embedded/poky/bitbake/bin:/usr/libexec/python2-sphinx:/usr/lib64/qt-3.3/bin:/usr/lib64/ccache:/usr/local/bin:/usr/local/sbin:/usr/bin:/usr/sbin:/home/user/.local/bin:/home/user/bin) 
[[email protected] build]$ 

同様に、私はリストbitbakeコマンドでそれを見ることはありません。

[[email protected] poky]$ cd bitbake/bin 
[[email protected] bin]$ ls -al 
total 100 
drwxrwxr-x. 2 user user 4096 Oct 18 12:49 . 
drwxrwxr-x. 6 user user 4096 Oct 18 12:49 .. 
-rwxrwxr-x. 1 user user 2072 Nov 18 11:51 bitbake 
-rwxrwxr-x. 1 user user 7228 Oct 18 12:49 bitbake-diffsigs 
-rwxrwxr-x. 1 user user 2894 Oct 18 12:49 bitbake-dumpsig 
-rwxrwxr-x. 1 user user 4069 Oct 18 12:49 bitbake-layers 
-rwxrwxr-x. 1 user user 2109 Oct 18 12:49 bitbake-prserv 
-rwxrwxr-x. 1 user user 2128 Oct 18 12:49 bitbake-selftest 
-rwxrwxr-x. 1 user user 17866 Oct 18 12:49 bitbake-worker 
-rwxrwxr-x. 1 user user 13951 Oct 18 12:49 bitdoc 
-rwxrwxr-x. 1 user user 5813 Oct 18 12:49 git-make-shallow 
-rwxrwxr-x. 1 user user 8805 Oct 18 12:49 toaster 
-rwxrwxr-x. 1 user user 4177 Oct 18 12:49 toaster-eventreplay 
[[email protected] bin]$ 

それがまだ存在している/ 2016年7月からhttps://elinux.org/Bitbake_Cheat_Sheetに記載されています。

答えて

0

bitbake-envは、OpenEmbedded Coreの一部ではなく、実際にはOpenEmbedded Coreの一部ではないため、特にインストールしない限り表示されません。実際には、bitbakeのためのbitbake -eフラグの「改良された」バージョンです。

bash-4.3$ bitbake --help 
Usage: bitbake [options] [recipename/target recipe:do_task ...] 

    Executes the specified task (default is 'build') for a given set of target recipes (.bb files). 
    It is assumed there is a conf/bblayers.conf available in cwd or in BBPATH which 
    will provide the layer, BBFILES and other configuration information. 

Options: 
    ... 
    -e, --environment  Show the global or per-recipe environment complete 
         with information about where variables were 
         set/changed. 
+0

あなたは私にnuthin 'newと言っています。私がすでに知っていた事実だけ。まあ...少なくとも、bitbake-envはサードパーティツール(Chrises 'Larsonツール)であることを知らせてくれてありがとう。これは私の新しい情報です。私は一緒に仕事をします。 – nobody

関連する問題