summaryrefslogtreecommitdiffstats
path: root/meta/recipes-devtools/guilt/files/guilt-update-supported-git-versions-to-1.8.x.patch
diff options
context:
space:
mode:
authorBruce Ashfield <bruce.ashfield@windriver.com>2013-08-23 14:08:17 -0400
committerRichard Purdie <richard.purdie@linuxfoundation.org>2013-08-26 11:29:45 +0100
commitbfba97076555f1e708b4fef08fdcfa43f35d2fcb (patch)
tree76c0c0a4a43a2b46642f7ceaa35cc04de2f9bbcb /meta/recipes-devtools/guilt/files/guilt-update-supported-git-versions-to-1.8.x.patch
parent3b2b4eef0fd06099342fcc2dfa35ecf37840c090 (diff)
downloadpoky-bfba97076555f1e708b4fef08fdcfa43f35d2fcb.tar.gz
guilt: update to latest git version
Uprev guilt to the latest guilt version from its upstream repository. As part of the uprev all of the previous changes required for the yocto kernel tools to use git to manipulate series files have been dropped. These changes were specific to circumventing parts of guilt's internal santiy checking to allow specific Yocto kernel manipluation of sub-series files. Since the kernel tools no longer need guilt, we can use an up to date and nearly pure upstream version of guilt. (From OE-Core rev: 595c4469adc36d88ba2403915fc6c1d355014a58) Signed-off-by: Bruce Ashfield <bruce.ashfield@windriver.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-devtools/guilt/files/guilt-update-supported-git-versions-to-1.8.x.patch')
-rw-r--r--meta/recipes-devtools/guilt/files/guilt-update-supported-git-versions-to-1.8.x.patch28
1 files changed, 0 insertions, 28 deletions
diff --git a/meta/recipes-devtools/guilt/files/guilt-update-supported-git-versions-to-1.8.x.patch b/meta/recipes-devtools/guilt/files/guilt-update-supported-git-versions-to-1.8.x.patch
deleted file mode 100644
index 579d9bc6fa..0000000000
--- a/meta/recipes-devtools/guilt/files/guilt-update-supported-git-versions-to-1.8.x.patch
+++ /dev/null
@@ -1,28 +0,0 @@
1From d7fb5d4e159071b6255181fcf436300038fe9e6c Mon Sep 17 00:00:00 2001
2From: Bruce Ashfield <bruce.ashfield@windriver.com>
3Date: Wed, 16 Jan 2013 20:48:11 -0500
4Subject: [PATCH] guilt: update supported git versions to 1.8.x
5
6guilt errors on the new 1.8.x git series, when it shouldn't, since
71.8.x works fine with the existing guilt version.
8
9Signed-off-by: Bruce Ashfield <bruce.ashfield@windriver.com>
10---
11 guilt | 1 +
12 1 file changed, 1 insertion(+)
13
14diff --git a/guilt b/guilt
15index 346f929..6505653 100755
16--- a/guilt
17+++ b/guilt
18@@ -37,6 +37,7 @@ case "$gitver" in
19 1.5.*) ;; # git config
20 1.6.*) ;; # git config
21 1.7.*) ;; # git config
22+ 1.8.*) ;; # git config
23 *) die "Unsupported version of git ($gitver)" ;;
24 esac
25
26--
271.7.10.4
28