We are running a survey to help us improve the experience for all of our members. If you see the survey appear, please take the time to tell us about your experience if you can.
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?
dotweiba wrote:This repo git.kernel.org/cgit/linux/kernel/git/mark/boot-wrapper-aarch64.git does not exist.However cloning this url https://git.kernel.org/pub/scm/linux/kernel/git/mark/boot-wrapper-aarch64.git works.By the way, this repo seems to make patches to Index of /pub/scm/linux/kernel/git/cmarinas/boot-wrapper-aarch64.git . and does not fix some minor errors.Perhaps making initramfs would be a tough thing, and I have successfully booted deliverables 16.06 for fvp of which the kernel version is 4.7. Thank you all the same!
dotweiba wrote:
This repo git.kernel.org/cgit/linux/kernel/git/mark/boot-wrapper-aarch64.git does not exist.
However cloning this url https://git.kernel.org/pub/scm/linux/kernel/git/mark/boot-wrapper-aarch64.git works.
By the way, this repo seems to make patches to Index of /pub/scm/linux/kernel/git/cmarinas/boot-wrapper-aarch64.git . and does not fix some minor errors.
Perhaps making initramfs would be a tough thing, and I have successfully booted deliverables 16.06 for fvp of which the kernel version is 4.7. Thank you all the same!
Hi,
Glad to hear it helped.
When I click on git.kernel.org/cgit/linux/kernel/git/mark/boot-wrapper-aarch64.git
as mentioned by you, i can see the repo. Not sure what you mean by doesn't exist ?
Regards,
Sudeep
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.