Hi,
I am using clean, fresh install of Ubuntu 20.04.6 LTS 64bit.
While following the Yocto Linux 3.0.0 quickstart quide (https://wiki.analog.com/resources/tools-software/linuxdsp/docs/quickstartguide/quickstart_sc584_3_0_0) I got stuck on the following command:
./bin/repo init \
-u github.com/.../lnxdsp-repo-manifest.git \
-b release/yocto-3.0.0 \
-m release-yocto-3.0.0.xml
Initially I got "/usr/bin/env: ‘python’: No such file or directory". I tried "sudo apt install python-is-python3" to make the script use python3 and also "sudo apt install python" to install python2. In both cases I got following error:
repo: reusing existing repo client checkout in /home/slx/griffin
Traceback (most recent call last):
File "/home/slx/griffin/.repo/repo/main.py", line 896, in <module>
_Main(sys.argv[1:])
File "/home/slx/griffin/.repo/repo/main.py", line 861, in _Main
result = repo._Run(name, gopts, argv) or 0
File "/home/slx/griffin/.repo/repo/main.py", line 293, in _Run
result = run()
File "/home/slx/griffin/.repo/repo/main.py", line 276, in <lambda>
run = lambda: self._RunLong(name, gopts, argv) or 0
File "/home/slx/griffin/.repo/repo/main.py", line 450, in _RunLong
execute_command()
File "/home/slx/griffin/.repo/repo/main.py", line 416, in execute_command
execute_command_helper()
File "/home/slx/griffin/.repo/repo/main.py", line 382, in execute_command_helper
result = cmd.Execute(copts, cargs)
File "/home/slx/griffin/.repo/repo/subcmds/init.py", line 393, in Execute
self._ConfigureUser(opt)
File "/home/slx/griffin/.repo/repo/subcmds/init.py", line 210, in _ConfigureUser
name = self._Prompt("Your Name", mp.UserName)
File "/home/slx/griffin/.repo/repo/project.py", line 756, in UserName
self._LoadUserIdentity()
File "/home/slx/griffin/.repo/repo/project.py", line 769, in _LoadUserIdentity
u = self.bare_git.var("GIT_COMMITTER_IDENT")
File "/home/slx/griffin/.repo/repo/project.py", line 3701, in runner
p.Wait()
File "/home/slx/griffin/.repo/repo/git_command.py", line 402, in Wait
raise GitCommandError(
git_command.GitCommandError: GitCommandError: git command failure
Project: manifests
Args: var GIT_COMMITTER_IDENT
Stdout:
None
Stderr:
I also tried release 3.1.0 (https://github.com/analogdevicesinc/lnxdsp-adi-meta/wiki/Getting-Started-with-ADSP%E2%80%90SC584-(Linux-for-ADSP%E2%80%90SC5xx-Processors-3.1.0) with the same result. How can I solve this problem?