diff options
author | Bruce Ashfield <bruce.ashfield@windriver.com> | 2015-09-18 15:21:38 -0400 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2015-09-19 09:47:31 +0100 |
commit | 440ad49e53359ea800c179df105ab885873d7691 (patch) | |
tree | 4c6961c965d8136db73e1d8e67cb8788457805f8 /meta | |
parent | c49ddbf254c2d170d0aeced78ef6c87e60736a26 (diff) | |
download | openembedded-core-contrib-440ad49e53359ea800c179df105ab885873d7691.tar.gz |
kern-tools: optimize patching peformance
Updating the kern-tools SRCREV to integrat the following commit:
patching: only validate user supplied patches by default
Previously the patching tools would consider both system and user
supplied patches in the same manner .. they are simply a series of
patches to be applied to a branch, and that the scripts should determine
where in the series to start (based on what is already on the
branch).
This detection was causing a few problems:
- time consuming
- starting in the middle of a series when intermediate patches
were merged to a branch.
To solve both the performance and start detection, we instead simply
note the transition from system (i.e. already defined features and
series) and user/recipe supplied patches. When the transition is noted,
the system will start pushing ALL patches without doing autoresume
detection.
Control in keeping the series up to date is passed to the user, and
consistent behaviour/performance is achieved.
Signed-off-by: Bruce Ashfield <bruce.ashfield@windriver.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta')
-rw-r--r-- | meta/recipes-kernel/kern-tools/kern-tools-native_git.bb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/recipes-kernel/kern-tools/kern-tools-native_git.bb b/meta/recipes-kernel/kern-tools/kern-tools-native_git.bb index 4753094aa40..27df02ab7a4 100644 --- a/meta/recipes-kernel/kern-tools/kern-tools-native_git.bb +++ b/meta/recipes-kernel/kern-tools/kern-tools-native_git.bb @@ -4,7 +4,7 @@ LIC_FILES_CHKSUM = "file://git/tools/kgit;beginline=5;endline=9;md5=d8d1d729a70c DEPENDS = "git-native" -SRCREV = "bd144d43ca5b1eaf9e727bced4ce3b61b642297c" +SRCREV = "b7642a7c3f685850ffbb961313e6a593adb05370" PR = "r12" PV = "0.2+git${SRCPV}" |