Part Number:TDA4VM
Gary Lu:
git checkout ti-processor-sdk-rtos-j721e-evm-09_00_00_02这将使您的代码库切换到与ti-processor-sdk-rtos-j721e-evm-09_00_00_02兼容的标签。
,
?? ?:
$ git checkout ti-processor-sdk-rtos-j721e-evm-09_00_00_02error: pathspec 'ti-processor-sdk-rtos-j721e-evm-09_00_00_02' did not match any file(s) known to git
报上面的错误呢
,
?? ?:
请问标准的TAG有哪些呢,能否列出,我选一个和我下的SDK相匹配的
,
Gary Lu:
这个错误是因为你输入的分支名或者标签名不存在,或者你没有在本地仓库中创建这个分支或标签。请确保你输入的分支名或标签名正确,并且在本地仓库中存在。你可以使用以下命令查看本地仓库中所有的分支和标签:
git branch -a git tag -l如果你想要切换到远程仓库中的分支或标签,你需要先使用以下命令将远程分支或标签拉取到本地仓库中:
git fetch origin <branch/tag>然后再使用以下命令切换到对应的分支或标签:
git checkout <branch/tag>
,
Gary Lu:
您好,
其标准的TAG有以下几种:- TDA4VM-EVM:TDA4VM评估模块- TDA4VM-DAVEVM:TDA4VM ADAS视觉评估模块- TDA4VM-ADSEVM:TDA4VM ADAS评估模块- TDA4VM-AM6EVM:TDA4VM和AM6评估模块
,
?? ?:
好的 谢谢您
,
?? ?:
请问构建docker时这个问题如何解决呀:
$ sudo docker build –build-arg REPO_LOCATION=artifactory.itg.ti.com/docker-public/library/ –build-arg USE_PROXY=ti -f Dockerfile -t x86_ubuntu_22 .DEPRECATED: The legacy builder is deprecated and will be removed in a future release. Install the buildx component to build images with BuildKit: docs.docker.com/…/
Sending build context to Docker daemon 29.24MBStep 1/10 : ARG REPO_LOCATION=''Step 2/10 : FROM ${REPO_LOCATION}ubuntu:22.04Get "">artifactory.itg.ti.com/…/": dial tcp: lookup artifactory.itg.ti.com on 127.0.0.53:53: no such host
,
Gary Lu:
您好,
这可能是由于您的DNS设置不正确或网络连接不稳定导致的。