aboutsummaryrefslogtreecommitdiffstats
path: root/buildconfigs/src.git-clone
Commit message (Collapse)AuthorAgeFilesLines
* Honour XEN_LINUX_GIT_LOCALBRANCH and XEN_LINUX_GITREV variablesKeir Fraser2010-05-121-4/+6
| | | | | | | | | | | | | | | | XEN_GIT_ORIGIN to set the name of the remote origin; the default is still "xen". XEN_LINUX_GIT_LOCALBRANCH allows the name of the local branch to be set. The default is the same as the remote branch. XEN_LINUX_GITREV allows a specific GIT revision to be checked out, rather than a branch. By default it is the remote branch name. This change should result in no change in behaviour in the normal case. Signed-off-by: Jeremy Fitzhardinge <jeremy.fitzhardinge@citrix.com>
* Make sure git clone gets the right kernel branchKeir Fraser2010-05-041-4/+3
| | | | | | | | | | | | | When cloning kernel repo: 1. make remote called "xen" rather than the default "origin" 2. directly checkout the desired branch, rather than the default then the desired one Git 1.5 doesn't support -b on git clone, and seems to do something odd with the checkout branch argument, so avoid using the newer commandline options. Signed-off-by: Jeremy Fitzhardinge <jeremy.fitzhardinge@citrix.com>
* Revert 21110:d791173ca65b and 21111:986d3b1d30fbKeir Fraser2010-04-071-2/+4
| | | | | | Break automated tests. Signed-off-by: Keir Fraser <keir.fraser@citrix.com>
* Update git clone commandKeir Fraser2010-04-071-4/+2
| | | | | | | | When cloning the kernel repo: 1. make remote called "xen" rather than the default "origin" 2. directly checkout the desired branch in one step Signed-off-by: Jeremy Fitzhardinge<jeremy.fitzhardinge@citrix.com>
* buildconfigs/src.git-clone: use git clone, avoid git remoteKeir Fraser2009-06-181-37/+8
| | | | | | | | | | | | | | | | git 1.4.x (which is on even some moderately recent systems) doesn't have the `git remote' command. This is what caused the most recent patchman build failure. The machinery in buildconfigs/src.git-clone was rather more complicated than needed, too. In this patch I replace this with a similar set of runes to those used for ioemu-remote (almost identical except that the QEMU_TAG feature is not supported in this instance). I have done a successful test build with this change. Cc: Ian Campbell <Ian.Campbell@eu.citrix.com> Signed-off-by: Ian Jackson <ian.jackson@eu.citrix.com>
* [BUILD] Support cloning Linux tree from a git repository.Keir Fraser2008-07-031-0/+60
Integrate the linux-2.6-tip tree as linux-2.6-tip-latest Signed-off-by: Ian Campbell <ian.campbell@citrix.com>