如何在 ubuntu 18.04 中升级 dtc 版本?

如何在 ubuntu 18.04 中升级 dtc 版本?

我使用的是 Ubuntu 18.04,尝试使用

sudo apt-get 安装设备树编译器

它说

device-tree-compiler 已经是最新版本 (1.4.5-3)

但对于我的应用程序它要求 dtc 版本为 1.4.6

我应该怎么做才能获得最新版本?

答案1

  1. 下载AMD64 机器上的 device-tree-compiler_1.4.7-1_amd64.deb

  2. 双击 device-tree-compiler_1.4.7-1_amd64.deb 打开它以在 Ubuntu 软件中安装,或者打开终端并将目录更改为cd包含 device-tree-compiler_1.4.7-1_amd64.deb 的目录,然后使用以下命令进行安装:

    sudo apt install ./device-tree-compiler_1.4.7-1_amd64.deb
    

相关内容