web-dev-qa-db-ja.com

Ubuntu 18.04でdtcバージョンをアップグレードする方法は?

でパッケージを更新しようとすると、Ubuntu 18.04を使用しています

Sudo apt-get install device-tree-compiler

それは言う

device-tree-compilerはすでに最新バージョン(1.4.5-3)です

しかし my application の場合、dtcバージョン1.4.6が必要でした

最新のリリースを入手するにはどうすればよいですか?

4
  1. ダウンロード AMD64マシンではdevice-tree-compiler_1.4.7-1_AMD64.deb

  2. Device-tree-compiler_1.4.7-1_AMD64.debをダブルクリックしてそれを開き、Ubuntu Softwareにインストールするか、ターミナルを開き、cdを使用してディレクトリをdevice-tree-compiler_1.4.7-1_AMD64を含むディレクトリに変更します。 debして、次のコマンドでインストールします。

    Sudo apt install ./device-tree-compiler_1.4.7-1_AMD64.deb
    
1
karel