This service is available only in Japanese-language.

install-buildtoolsスクリプトを用いたビルドツールのインストール方法について

https://docs.yoctoproject.org/ref-manual/ref-system-requirements.html#re...

1.3.1 Installing a Pre-Built buildtools Tarball with install-buildtools script

の箇所を実施したいのですが、前提条件について不明点があります。
まず、

質問①
1.Execute the install-buildtools script. Here is an example:
$ cd poky

とありますが、pokyというディレクトリは、Yocto構築の過程の、

$ repo init -u https://source......../**-manifest -b ***-zeus -m ***.xml
$ repo sync

としたときにできる、[project dir]/sources/poky のことでしょうか?

質問②
scripts/install-buildtools --without-extended-buildtools \
--base-url https://downloads.yoctoproject.org/releases/yocto \
--release yocto-3.2 \
--installer-version 3.2

を実施しても、bash: scripts/install-buildtools: No such file or directory
と出てきてしまいます。

ここでは本来どのような操作をするのでしょうか?

install-buildtools は、yocto3.1(dunfell) から追加されたユーティリティです。

質問事項①についてですが、repo の xml ファイル内に記載されている、yoctoproject.org/poiky を指定してgit clone されたディレクトリを指します。
この場合は、sources/poky が該当します。

質問事項②についてですが、当該スクリプト install-buildtools の実行は、sources/poky に移動してから実施するように記載されていますので、poky に移動後に実施すればスクリプトの実行は可能となります。

ご返信ありがとうございます。追加でお聞きしたいのですが、
①repo の xml ファイル はどこに存在しますか?

②sources/pokyディレクトリに移動して、下記コマンドを実行してみましたが、やはりNo such fileと言われてしまいます。。。
ちなみに、/pokyディレクトリに、/scriptsディレクトリが存在していますが、その中に、install-buildtoolsというファイルは存在しませんでした。
この状態で、下記コマンドは機能しますか?

scripts/install-buildtools --without-extended-buildtools \
--base-url https://downloads.yoctoproject.org/releases/yocto \
--release yocto-3.2 \
--installer-version 3.2

bash: scripts/install-buildtools: No such file or directory

③前提として、Git,tar,Pythonがそれぞれ記載のver以上であれば、build-tooolsのインストールは必要ないですか?それともGit,tar,Python以外のパッケージや依存関係もインストールされますか?

xml ファイルは、repo を実行したディレクトリに.repo という隠しディレクトリがあり、その中に存在します。

なお、install-buildtools スクリプトが追加されたのは、dunfell (Yocto3.1)以降となりますので、zeus(Yocto3.0)では
ファイルは存在しません。
Zeusの場合は、
https://www.yoctoproject.org/docs/3.1.3/ref-manual/ref-manual.html#downl...
で説明されている手順でインストール可能となります。