~/SDK/Hi3519DV500_SDK_V2.0.0.2/mini_sdk/boot/u-boot echo "gzip" gzip make -C /home/lkuser/SDK/Hi3519DV500_SDK_V2.0.0.2/mini_sdk/boot/u-boot/../gzip/ make[2]: Entering directory '/home/lkuser/SDK/Hi3519DV500_SDK_V2.0.0.2/mini_sdk/boot/u-boot' make[2]: *** /home/lkuser/SDK/Hi3519DV500_SDK_V2.0.0.2/mini_sdk/boot/u-boot/../gzip/: No such file or directory. Stop. make[2]: Leaving directory '/home/lkuser/SDK/Hi3519DV500_SDK_V2.0.0.2/mini_sdk/boot/u-boot' make[1]: *** [Makefile:51: all] Error 2 make[1]: Leaving directory '/home/lkuser/SDK/Hi3519DV500_SDK_V2.0.0.2/mini_sdk/boot/u-boot' make: *** [Makefile:287: boot] Error 2什么意思
时间: 2023-08-02 12:11:48 浏览: 271
这段输出提示在运行 make 命令时发生了错误。具体原因是在执行 make -C 命令时,指定的目录 /home/lkuser/SDK/Hi3519DV500_SDK_V2.0.0.2/mini_sdk/boot/u-boot/../gzip/ 不存在。可能是因为缺少相应的文件或目录,或者路径写错了。建议检查一下路径是否正确,以及是否缺少相应的文件或目录。
相关问题
user@ubuntu:~/SDK/Hi3519DV500_SDK_V2.0.0.2/mini_sdk$ . /usr/share/bash-completion/bash_completion lkuser@ubuntu:~/SDK/Hi3519DV500_SDK_V2.0.0.2/mini_sdk$ git commit -m "gang xiu gai wan build/Makefile" Auto packing the repository in background for optimum performance. See "git help gc" for manual housekeeping. [master (root-commit) a1fc06b] gang xiu gai wan build/Makefile什么意思
这段代码是在 Ubuntu 操作系统下执行 Git 命令。具体来说,它包括两个命令:首先是加载 Bash 自动补全脚本,然后是提交一个 Git 代码库的变更,提交信息为 "gang xiu gai wan build/Makefile"。Git 在后台进行自动压缩以提高性能,并显示提交的哈希值(a1fc06b)。
File "/home/lkuser/SDK/Hi3519DV500_SDK_V2.0.0.2/smp/a55_optee/scripts/sign_encrypt.py", line 827, in load_ta_image ta_image = BinaryImage(args.inf, args.key) File "/home/lkuser/SDK/Hi3519DV500_SDK_V2.0.0.2/smp/a55_optee/scripts/sign_encrypt.py", line 343, in __init__ from cryptography.hazmat.primitives import hashes ModuleNotFoundError: No module named 'cryptography' make[3]: *** [/home/lkuser/SDK/Hi3519DV500_SDK_V2.0.0.2/smp/a55_optee/mk/link.mk:121: 8aabf300-2450-11e4-abe2-9f02a5d5bc2f.ta] Error 1 make[3]: Leaving directory '/home/lkuser/SDK/Hi3519DV500_SDK_V2.0.0.2/smp/a55_linux/source/mpp/sample/optee/security_subsys/ta' make[2]: *** [Makefile:24: ta] Error 2 make[2]: Leaving directory '/home/lkuser/SDK/Hi3519DV500_SDK_V2.0.0.2/smp/a55_linux/source/mpp/sample/optee/security_subsys' make[1]: *** [Makefile:11: security_subsys] Error 2 make[1]: Leaving directory '/home/lkuser/SDK/Hi3519DV500_SDK_V2.0.0.2/smp/a55_linux/source/mpp/sample/optee' make: *** [Makefile:27: optee] Error 2
这是一个编译错误,提示找不到名为 "cryptography" 的模块。你需要安装 "cryptography" 模块,可以使用 pip 工具来安装,运行以下命令:
```
pip install cryptography
```
如果你没有安装 pip 工具,需要先安装 pip 工具。具体方法可以参考 pip 官方文档。
阅读全文