summaryrefslogtreecommitdiff
path: root/kselftest-repo.conf
blob: 68cdf5f0ae7894b48e16118546d89d03af90b8ee (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#!/bin/bash
 
KSELFTEST_BRANCH=( "master linux-mainline" \
                   "linux-stable" \
                   "linux-linaro" \
                   "linux-linaro-stable-3.10" \
                   "linux-linaro-stable-3.14" )

# The format is "GIT_REPO BRANCH"
# The script will clone the branch 'BRANCH' from the repository 'GIT_REPO'
REMOTE_REPO=( "git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git      master" \
              "git://git.kernel.org/pub/scm/linux/kernel/git/stable/linux-stable.git master" \
              "http://git.linaro.org/kernel/linux-linaro-tracking.git                linux-linaro" \
              "http://git.linaro.org/kernel/linux-linaro-stable.git                  linux-linaro-lsk-v3.10" \
              "http://git.linaro.org/kernel/linux-linaro-stable.git                  linux-linaro-lsk-v3.14" )