Hi,
I have download android_jb4.2.2_1.1.0-ga.tar.gz and follow Android_User_Guide.pdf to setup source codes, but in chapter 3.1, I have problem to get kernel and u-boot source codes from Git server.
I can not find tag jb4.2.2_1.1.0-ga in Git server. Does anyone knows how to clone kernel & u-boot source codes which tagged with jb4.2.2_1.1.0-ga? Thanks.
Rick
Solved! Go to Solution.
I have the same issue. Will post anything I find.
have you fetched the tags?
$ git fetch --tags
Leo
I have the same issue too and I do "git fetch --tags".But doing "git tag" shows no branch "jb4.2.2_1.1.0-ga".I do everything following the user guide. In Site "linux-2.6-imx.git - Freescale i.MX Linux Tree ",the branch is exist.Anyone can help me?(I am sorry about my English.)
that is strange. Does 'git remove -v' point to the correct repo?
$ git remote -v
origin git://git.freescale.com/imx/linux-2.6-imx.git (fetch)
origin git://git.freescale.com/imx/linux-2.6-imx.git (push)
Leo
Thanks。I have resolved the problem。
1.set the git proxy。This is very important。
2.git fetch --tags git://git.freescale.com/imx/linux-2.6-imx.git jb4.2.2_1.1.0-ga
3.git checkout jb4.2.2_1.1.0-ga.
Note:Using http or https prxoy may have some problems."git fetch --tags linux-2.6-imx.git - Freescale i.MX Linux Tree jb4.2.2_1.1.0-ga" does not work well。
Leo, thanks.
Thank you Leo! That's clearly it, as now the patches apply without error, and the build is proceeding. I very much appreciate your help.
Tom