Hello. I am using ARMv8 foundation model for my project. When configure foundation model with multi cores (cores=4) my code does not run. Can you lease help me solve this problem?
Feel sorry for my equivocalness. What I meant was that the command "git clone git.kernel.org/cgit/linux/kernel/git/mark/boot-wrapper-aarch64.git" failed due to the non-existent repo. However, a little change in url makes difference. This one — "git clone https://git.kernel.org/pub/scm/linux/kernel/git/mark/boot-wrapper-aarch64.git " — works. That is weird, I mean, both of the url refer to the same repo, at least the identical git log.
Unfortunately, both of them do not mend a flaw that seem to result from changes in linux kernel code structure.
No, you need to specify the protocol to use for git clone command.
E.g:
git clone https://git.kernel.org/pub/scm/linux/kernel/git/mark/boot-wrapper-aarch64.git
git clone git://git.kernel.org/pub/scm/linux/kernel/git/mark/boot-wrapper-aarch64.git
First uses secure http while second uses git protocol in above example.
So that's not weird, but expected
Okay, many thanks. I can't believe I have made such a lapse somehow.