How to add an additional project to an existing source of the Android operating system?

I am working on kernel development in AOSP, and the kernel repository I'm working on is not part of the operating system. It has a separate git repository. Therefore, when I try to push all AOSP sources to the server, I do not see the kernel sources there.

How to add a repository (project) to an existing Android source file tree?

+7
source share
1 answer

I found the answer to this link , but not quite what I want.

Then I moved the kernel repository as a separate project (without using repo forall -c "git push ...).

  • $ repo forall -c 'git push ssh: // username @ myserver / my-aosp-project / $ REPO_PROJECT HEAD: refs / heads / master'
  • $ git push ssh: // username@myserver /my-aosp-project/kernel.git HEAD: refs / heads / master

And also I changed the manifest.xml file (which is on the server), adding this

<project path="kernel" name="kernel" /> 
+4
source

All Articles