diff options
author | Tom Zanussi <tom.zanussi@intel.com> | 2013-01-15 16:59:57 -0600 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2013-01-16 12:08:01 +0000 |
commit | a746719a46e9277a118fd7d4a6342bb667034132 (patch) | |
tree | c43113311d641844e5affefde108a61f5d163fb3 /scripts/lib/bsp | |
parent | e02b31623dac54f82509fcb5588bb58daaaa75e0 (diff) | |
download | poky-a746719a46e9277a118fd7d4a6342bb667034132.tar.gz |
yocto-bsp: add basic git connectivity check
yocto-bsp create does a 'git ls-remote
git://git.yoctoproject.org/linux-yocto-3.4.git *heads*' to get the set
of existing branches from the kernel repo.
If the user isn't connected to the network, or if git isn't configured
sanely, yocto-bsp fails with an ugly Python backtrace.
We should try to avoid this by doing a basic sanity check for those
things before actually running the command.
The sanity check can be avoided by specifying -s on the yocto-bsp
command-line:
$ yocto-bsp create -s test qemu
Fixes [YOCTO #3279]
(From meta-yocto rev: 496e76f9bed2ed5a04ef757724d2e63d05c7a601)
Signed-off-by: Tom Zanussi <tom.zanussi@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'scripts/lib/bsp')
-rw-r--r-- | scripts/lib/bsp/tags.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/lib/bsp/tags.py b/scripts/lib/bsp/tags.py index 256b25cb04..6d5feb0a59 100644 --- a/scripts/lib/bsp/tags.py +++ b/scripts/lib/bsp/tags.py | |||
@@ -41,7 +41,7 @@ INPUT_TYPE_PROPERTY = "type" | |||
41 | 41 | ||
42 | SRC_URI_FILE = "file://" | 42 | SRC_URI_FILE = "file://" |
43 | 43 | ||
44 | 44 | GIT_CHECK_URI = "git://git.yoctoproject.org/linux-yocto-dev.git" | |
45 | 45 | ||
46 | 46 | ||
47 | 47 | ||